2021-08-15 19:32:06 +00:00
|
|
|
name: authentik-web-api-publish
|
|
|
|
on:
|
|
|
|
push:
|
2023-04-21 10:54:23 +00:00
|
|
|
branches: [main]
|
2021-08-15 19:32:06 +00:00
|
|
|
paths:
|
2023-04-21 10:54:23 +00:00
|
|
|
- "schema.yml"
|
2022-05-10 08:12:47 +00:00
|
|
|
workflow_dispatch:
|
2021-08-15 19:32:06 +00:00
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2023-05-31 12:23:04 +00:00
|
|
|
- id: generate_token
|
2023-09-11 10:27:07 +00:00
|
|
|
uses: tibdex/github-app-token@v2
|
2023-05-31 12:23:04 +00:00
|
|
|
with:
|
|
|
|
app_id: ${{ secrets.GH_APP_ID }}
|
|
|
|
private_key: ${{ secrets.GH_APP_PRIVATE_KEY }}
|
2023-09-05 04:42:41 +00:00
|
|
|
- uses: actions/checkout@v4
|
2023-01-11 16:20:28 +00:00
|
|
|
with:
|
2023-05-31 12:23:04 +00:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|
2023-10-24 09:44:27 +00:00
|
|
|
- uses: actions/setup-node@v4
|
2021-08-15 19:32:06 +00:00
|
|
|
with:
|
2023-09-20 10:28:47 +00:00
|
|
|
node-version: "20"
|
2023-04-21 10:54:23 +00:00
|
|
|
registry-url: "https://registry.npmjs.org"
|
2021-08-23 13:54:58 +00:00
|
|
|
- name: Generate API Client
|
2022-09-11 21:01:26 +00:00
|
|
|
run: make gen-client-ts
|
2021-08-23 13:54:58 +00:00
|
|
|
- name: Publish package
|
2022-05-09 19:22:41 +00:00
|
|
|
working-directory: gen-ts-api/
|
2021-08-23 13:54:58 +00:00
|
|
|
run: |
|
2022-04-14 20:30:44 +00:00
|
|
|
npm ci
|
2021-08-15 19:32:06 +00:00
|
|
|
npm publish
|
|
|
|
env:
|
|
|
|
NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }}
|
2021-08-23 13:54:58 +00:00
|
|
|
- name: Upgrade /web
|
2022-05-09 19:22:41 +00:00
|
|
|
working-directory: web/
|
2021-08-23 13:54:58 +00:00
|
|
|
run: |
|
2022-05-10 08:19:15 +00:00
|
|
|
export VERSION=`node -e 'console.log(require("../gen-ts-api/package.json").version)'`
|
2021-08-23 13:57:56 +00:00
|
|
|
npm i @goauthentik/api@$VERSION
|
2023-04-05 09:31:25 +00:00
|
|
|
- uses: peter-evans/create-pull-request@v5
|
2021-11-23 18:15:31 +00:00
|
|
|
id: cpr
|
2021-08-23 13:54:58 +00:00
|
|
|
with:
|
2023-05-31 12:23:04 +00:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|
2021-08-23 13:54:58 +00:00
|
|
|
branch: update-web-api-client
|
2022-08-16 11:41:23 +00:00
|
|
|
commit-message: "web: bump API Client version"
|
|
|
|
title: "web: bump API Client version"
|
|
|
|
body: "web: bump API Client version"
|
2021-08-23 13:54:58 +00:00
|
|
|
delete-branch: true
|
|
|
|
signoff: true
|
2023-06-01 19:17:37 +00:00
|
|
|
# ID from https://api.github.com/users/authentik-automation[bot]
|
|
|
|
author: authentik-automation[bot] <135050075+authentik-automation[bot]@users.noreply.github.com>
|
2023-03-24 10:01:13 +00:00
|
|
|
- uses: peter-evans/enable-pull-request-automerge@v3
|
2023-01-11 16:15:19 +00:00
|
|
|
with:
|
2023-05-31 12:23:04 +00:00
|
|
|
token: ${{ steps.generate_token.outputs.token }}
|
2023-01-11 16:15:19 +00:00
|
|
|
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
|
|
|
|
merge-method: squash
|