Skip to content

Commit

Permalink
chore: re-enable publish workflow
Browse files Browse the repository at this point in the history
This reverts commit 7160eb7.

[skip ci]
  • Loading branch information
darrachequesne committed Sep 16, 2024
1 parent 7160eb7 commit 02d59a0
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
# reference: https://docs.npmjs.com/generating-provenance-statements

name: Publish

on:
push:
tags:
# expected format: <package>@<version> (example: [email protected])
- '**@*'

jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: read
id-token: write

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: 'https://registry.npmjs.org'

- name: Install dependencies
run: npm ci

- name: Compile each package
run: npm run compile --workspaces --if-present

- name: Publish package
run: npm publish --workspace=${GITHUB_REF_NAME%@*} --provenance --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 02d59a0

Please sign in to comment.