Skip to content

v1.6.4-rc.2

v1.6.4-rc.2 #63

Workflow file for this run

name: Release & Publish Package
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
- run: npm ci
- run: npm test
publish-gpr:
needs: build
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
registry-url: https://npm.pkg.github.com/
- run: npm ci
- run: npm run build:esm
- id: use-tag-version
if: github.event.release.prerelease
run: npm version --no-git-tag-version $(git describe --tags --abbrev=0 | sed 's/^v//')
- id: publish-prerelease
if: github.event.release.prerelease
run: npm publish --tag prerelease
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
- run: npm publish
if: "!github.event.release.prerelease"
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}