release: 0.1.3 #4
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
# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created | |
# For more information see: https://docs.github.com/en/actions/publishing-packages/publishing-nodejs-packages | |
name: publish | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: "the package version you want to bump" | |
required: true | |
default: "keep current" | |
type: choice | |
options: | |
- "keep current" | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
publish-npm: | |
needs: build | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- uses: actions/download-artifact@v4 | |
with: | |
name: artifact | |
- uses: actions/setup-node@v4 | |
with: | |
# node-version: "lts/*" | |
registry-url: https://registry.npmjs.org/ | |
- run: npm publish --provenance --access public --registry=https://registry.npmjs.org/ | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}} | |
publish-ghp: | |
needs: build | |
runs-on: ubuntu-latest | |
env: | |
SCOPE: "@${{github.repository_owner}}" | |
permissions: | |
contents: read | |
packages: write | |
id-token: write | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: "recursive" | |
- uses: actions/setup-node@v4 | |
with: | |
# node-version: "lts/*" | |
registry-url: "https://npm.pkg.github.com/" | |
# Defaults to the user or organization that owns the workflow file | |
scope: ${{env.SCOPE}} | |
token: ${{secrets.GITHUB_TOKEN}} | |
always-auth: true | |
- uses: actions/download-artifact@v4 | |
with: | |
name: artifact | |
- name: rename package name | |
run: | | |
node .github/workflows/package.cjs | |
- run: npm publish --access public --registry=https://npm.pkg.github.com | |
env: | |
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |