Skip to content

Commit

Permalink
fix yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
cowboyd committed Nov 26, 2024
1 parent 2154435 commit e93b2c1
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- uses: denoland/setup-deno@v2
with:
deno-version: v2.x
- run: deno run -A www/tasks publish-matrix.ts
- run: deno run -A www/tasks/publish-matrix.ts
id: set-matrix

jsr:
Expand Down Expand Up @@ -59,23 +59,23 @@ jobs:
steps:
- uses: actions/[email protected]
- uses: denoland/setup-deno@v2
uses: actions/setup-node@v4
- uses: actions/setup-node@v4
with:
node-version: 20.x
registry-url: https://registry.npmjs.com

- run: deno run -A www/tasks/build-npm.ts ${{matrix.workspace}}

- run: npm publish --access=public --tag=next
working-directory: ${{matrix.workspace}}/build/npm
env:
NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
# - run: npm publish --access=public --tag=next
# working-directory: ${{matrix.workspace}}/build/npm
# env:
# NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}

tag:
if: needs.generate-matrix.outputs.matrix != ''
name: "Tag Release"
runs-on: ubuntu-latest
needs: [jsr, npm]
needs: [generate-matrix, jsr, npm]

strategy:
fail-fast: false
Expand Down

0 comments on commit e93b2c1

Please sign in to comment.