Skip to content

Commit

Permalink
fix: ci
Browse files Browse the repository at this point in the history
  • Loading branch information
ralphschuler committed Nov 26, 2023
1 parent c267cf5 commit bd6770f
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true

permissions:
contents: read
packages: write

jobs:
publish:
if: ${{ github.event.action != 'deleted' }}
Expand All @@ -35,8 +39,9 @@ jobs:
- uses: actions/[email protected]
with:
node-version: 20
registry-url: ${{ matrix.registry-url }}
scope: ${{ matrix.scope }}
registry-url: "${{ matrix.registry-url }}"
scope: "${{ matrix.scope }}"
always-auth: true
- run: corepack enable
- run: yarn
- run: yarn publish --access public
Expand Down Expand Up @@ -66,8 +71,9 @@ jobs:
- uses: actions/[email protected]
with:
node-version: 20
registry-url: ${{ matrix.registry-url }}
scope: ${{ matrix.scope }}
registry-url: "${{ matrix.registry-url }}"
scope: "${{ matrix.scope }}"
always-auth: true
- run: corepack enable
- run: yarn
- run: yarn unpublish --force
Expand Down

0 comments on commit bd6770f

Please sign in to comment.