Skip to content

Commit

Permalink
👷🚜👣
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd committed Nov 26, 2024
1 parent 1bfb4ad commit 9337533
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
id: set-matrix

jsr:
if: needs.generate-matrix.outputs.exists
if: fromJSON(needs.generate-matrix.outputs.exists)
name: Publish ${{ matrix.name }}@${{matrix.version}} to JSR
runs-on: ubuntu-latest

Expand All @@ -45,7 +45,7 @@ jobs:
- run: deno publish
working-directory: ${{ matrix.workspace }}
npm:
if: needs.generate-matrix.outputs.exists
if: fromJSON(needs.generate-matrix.outputs.exists)
name: Publish ${{ matrix.name }}@${{matrix.version}} to NPM
runs-on: ubuntu-latest

Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

tag:
if: needs.generate-matrix.outputs.exists
if: fromJSON(needs.generate-matrix.outputs.exists)
name: "Tag Release"
runs-on: ubuntu-latest
needs: [generate-matrix, jsr, npm]
Expand Down

0 comments on commit 9337533

Please sign in to comment.