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:
|
2022-03-02 08:56:53 +00:00
|
|
|
- uses: actions/checkout@v3
|
2023-01-11 16:20:28 +00:00
|
|
|
with:
|
|
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
2023-01-06 08:49:09 +00:00
|
|
|
- uses: actions/setup-node@v3.6.0
|
2021-08-15 19:32:06 +00:00
|
|
|
with:
|
2023-04-21 10:54:23 +00:00
|
|
|
node-version: "20"
|
|
|
|
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-01-11 15:24:30 +00:00
|
|
|
token: ${{ secrets.BOT_GITHUB_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-01-11 16:16:43 +00:00
|
|
|
team-reviewers: "@goauthentik/core"
|
2023-01-14 13:52:47 +00:00
|
|
|
author: authentik bot <github-bot@goauthentik.io>
|
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:
|
|
|
|
token: ${{ secrets.BOT_GITHUB_TOKEN }}
|
|
|
|
pull-request-number: ${{ steps.cpr.outputs.pull-request-number }}
|
|
|
|
merge-method: squash
|