This repository has been archived on 2024-05-31. You can view files and clone it, but cannot push or open issues or pull requests.
2021-08-15 19:32:06 +00:00
|
|
|
name: authentik-web-api-publish
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches: [ master, '*', next, version* ]
|
|
|
|
paths:
|
|
|
|
- 'schema.yml'
|
|
|
|
jobs:
|
|
|
|
build:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
# Setup .npmrc file to publish to npm
|
|
|
|
- uses: actions/setup-node@v2
|
|
|
|
with:
|
2021-08-23 07:32:04 +00:00
|
|
|
node-version: '16.x'
|
2021-08-15 19:32:06 +00:00
|
|
|
registry-url: 'https://registry.npmjs.org'
|
2021-08-23 13:54:58 +00:00
|
|
|
- name: Generate API Client
|
|
|
|
run: make gen-web
|
|
|
|
- name: Publish package
|
|
|
|
run: |
|
2021-08-23 07:49:09 +00:00
|
|
|
cd web-api/
|
|
|
|
npm i
|
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
|
|
|
|
run: |
|
|
|
|
cd web/
|
|
|
|
npm i @goauthentik/api@${node -e 'console.log(require("../web-api/package.json").version)'}
|
|
|
|
- name: Create Pull Request
|
|
|
|
uses: peter-evans/create-pull-request@v3
|
|
|
|
with:
|
|
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
branch: update-web-api-client
|
|
|
|
commit-message: Update Web API Client version
|
|
|
|
title: Update Web API Client version
|
|
|
|
delete-branch: true
|
|
|
|
signoff: true
|