Skip to content

test npm release build steps #9

test npm release build steps

test npm release build steps #9

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://npm.pkg.github.com/
- 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: Build and Publish Shared Library - ziti-console-lib
if: github.repository_owner == 'openziti'
run: ./publishSharedLib.sh
- name: Setup .npmrc
if: github.ref_type == 'tag'
# Setup .npmrc file to prepare for possible publish to npm
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
registry-url: 'https://registry.npmjs.org'
- name: Publish production release
if: (github.ref == 'refs/heads/main' && github.actor != 'dependabot[bot]') # do not publish if only doing a dep update initiated by dependabot

Check failure on line 63 in .github/workflows/releases.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/releases.yml

Invalid workflow file

You have an error in your yaml syntax on line 63
run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}