ci: enable pipeline publishing #6
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: CD | ||
on: | ||
push: {} # Remove me! | ||
workflow_dispatch: | ||
inputs: | ||
branch: | ||
description: Branch to publish a release from | ||
required: true | ||
default: main | ||
type: choice | ||
options: | ||
- main | ||
- v9.x | ||
permissions: {} | ||
jobs: | ||
test: | ||
name: Test | ||
uses: ./.github/workflows/ci.yaml | ||
build: | ||
name: Build | ||
permissions: | ||
id-token: write | ||
contents: read | ||
actions: read | ||
# Do not pin to hash | ||
# See: https://github.com/slsa-framework/slsa-verifier/issues/12 | ||
uses: slsa-framework/slsa-github-generator/.github/workflows/[email protected] | ||
with: | ||
node-version: 22 | ||
run-scripts: ci, test | ||
publish: | ||
name: Publish | ||
runs-on: ubuntu-24.04 | ||
needs: [build] | ||
permissions: | ||
content: read | ||
id-token: write | ||
steps: | ||
- name: Download Tarball | ||
uses: slsa-framework/slsa-github-generator/actions/nodejs/[email protected] | ||
with: | ||
name: ${{ needs.build.outputs.package-download-name }} | ||
path: ${{ needs.build.outputs.package-name }} | ||
sha256: ${{ needs.build.outputs.package-download-sha256 }} | ||
- name: Download Provenance | ||
uses: slsa-framework/slsa-github-generator/actions/nodejs/[email protected] | ||
with: | ||
name: ${{ needs.build.outputs.provenance-download-name }} | ||
path: attestations | ||
sha256: ${{ needs.build.outputs.provenance-download-sha256 }} | ||
- name: Request for NPM 2FA Code | ||
uses: step-security/wait-for-secrets@5809f7d044804a5a1d43217fa8f3e855939fc9ef # v1.2.0 | ||
with: | ||
secrets: | | ||
npm-otp: | ||
name: NPM Registry OTP | ||
description: NPM Registry TOTP code for `achrinza-bot` NPM account | ||
- name: Publish Package | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
TARBALL_PATH: ${{ needs.build.outputs.package-name }} | ||
PROVENANCE_PATH: ./attestations/${{ needs.build.outputs.provenance-name }} | ||
run: | | ||
npm publish \ | ||
--access=public \ | ||
--provenance-file="$PROVENANCE_PATH" \ | ||
"$TARBALL_PATH" |