Skip to content

ziti-console-lib-v0.30.0 #21

ziti-console-lib-v0.30.0

ziti-console-lib-v0.30.0 #21

Workflow file for this run

on:
release:
types: [created]
name: Create Releases
jobs:
build-and-publish-app-ziti-console:
if: startsWith(github.event.release.name, 'app-ziti-console-v')
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
BUILD_CONFIG: "Release"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://npm.pkg.github.com/
- name: build and upload ziti-console.zip as SPA for use with controller
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
run: |
./build.sh /zac/
cd dist/app-ziti-console && zip -r ziti-console.zip *
gh release upload ${{github.event.release.tag_name}} ziti-console.zip
build-and-publish-ziti-console-lib:
if: startsWith(github.event.release.name, 'ziti-console-lib-v')
runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
BUILD_CONFIG: "Release"
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Set VERSION Environment Variable
run: echo "VERSION=$(jq -r .version package.json)" >> $GITHUB_ENV
- name: Set VERSION Environment Variable
run: |
VERSION=$(echo "${{ github.event.release.name }}" | grep -oP '^.*-v(.*)$')
echo "VERSION=${VERSION}" >> $GITHUB_ENV
- name: Test branch name
run: |
echo "echo ${GITHUB_REF#refs/heads/}"
id: extract_branch
- name: Publish production release
if: true
run: |
npm install
npm install -g @angular/[email protected]
ng build ziti-console-lib
cd dist/ziti-console-lib
npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}