🔖 v6.0.1 #97
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- 'v*.*.*' | |
jobs: | |
publish_npm: | |
name: Publish to NPM | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-npm-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
env: | |
CI: true | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@stoe' | |
- name: NPM config | |
run: | | |
npm pkg delete scripts.prepare | |
npm install --ignore-scripts --pure-lockfile | |
git ls-files -z . | xargs -0 git update-index --assume-unchanged | |
- name: NPM publish | |
run: npm run publish | |
publish_gh: | |
name: Publish to GitHub | |
runs-on: ubuntu-latest | |
concurrency: | |
group: ${{ github.workflow }}-gh-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
packages: write | |
env: | |
CI: true | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 | |
- name: Setup Node.js | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: 20 | |
registry-url: 'https://npm.pkg.github.com' | |
scope: '@stoe' | |
- name: NPM config | |
run: | | |
npm pkg delete scripts.prepare | |
npm install --ignore-scripts --pure-lockfile | |
git ls-files -z . | xargs -0 git update-index --assume-unchanged | |
- name: GitHub Packages publish | |
run: npm run publish |