From d8e8cc062b9f6c1c6d7682d1dec3450908f8101c Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Sun, 15 Aug 2021 21:32:06 +0200 Subject: [PATCH] ci: add pipeline to build and push js api package Signed-off-by: Jens Langhammer --- .github/workflows/web-api-publish.yml | 22 ++++++++++++++++++++++ Makefile | 5 ++--- 2 files changed, 24 insertions(+), 3 deletions(-) create mode 100644 .github/workflows/web-api-publish.yml diff --git a/.github/workflows/web-api-publish.yml b/.github/workflows/web-api-publish.yml new file mode 100644 index 000000000..5a7750a3c --- /dev/null +++ b/.github/workflows/web-api-publish.yml @@ -0,0 +1,22 @@ +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: + node-version: '12.x' + registry-url: 'https://registry.npmjs.org' + - run: make gen-web + - run: | + cd web/api/ + npm publish + env: + NODE_AUTH_TOKEN: ${{ secrets.NPM_PUBLISH_TOKEN }} diff --git a/Makefile b/Makefile index 33c52b3bf..a036ebdbb 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ PWD = $(shell pwd) UID = $(shell id -u) GID = $(shell id -g) +TIMESTAMP = $(shell date "+%s") all: lint-fix lint test gen @@ -42,9 +43,7 @@ gen-web: -i /local/schema.yml \ -g typescript-fetch \ -o /local/web/api \ - --additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=authentik-api,npmVersion=1.0.0 - # npm i runs tsc as part of the installation process - cd web/api && npm i + --additional-properties=typescriptThreePlus=true,supportsES6=true,npmName=@goauthentik/api,npmVersion=${TIMESTAMP}.0.0 gen-outpost: docker run \