This repository was archived by the owner on Mar 31, 2025. It is now read-only.
v5.0.0 #4
Workflow file for this run
This file contains hidden or 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: | |
release: | |
types: [published] | |
jobs: | |
ci: | |
name: CI | |
uses: ./.github/workflows/ci.yml | |
publish-to-npm: | |
name: Publish to npm | |
permissions: | |
contents: read | |
id-token: write | |
needs: ci | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: npm | |
registry-url: https://registry.npmjs.org | |
- run: npm ci | |
- run: npm publish --provenance | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | |
publish-to-github-packages: | |
name: Publish to GitHub Packages | |
permissions: | |
contents: read | |
packages: write | |
needs: ci | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Change package scope | |
run: | | |
sed -i -E "s/@.+(\/cashcash)/@${{ github.repository_owner }}\1/" package.json | |
cat package.json | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: ".nvmrc" | |
cache: npm | |
registry-url: https://npm.pkg.github.com | |
- run: npm ci | |
- run: npm publish | |
env: | |
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }} |