Skip to content

Commit

Permalink
feat: pls work
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexanderWollbrink committed Nov 14, 2023
1 parent 7ca5174 commit d6b7325
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/versioning-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,18 @@ jobs:
release:
name: Versioning
runs-on: ubuntu-latest
permissions: write-all
permissions:
contents: write # to be able to publish a GitHub release
issues: write # to be able to comment on released issues
pull-requests: write # to be able to comment on released pull requests
id-token: write # to enable use of OIDC for npm provenance
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
persist-credentials: false
token: ${{ secrets.TOKEN }}
- name: Setup Node.js
uses: actions/setup-node@v3
with:
Expand All @@ -31,6 +36,6 @@ jobs:
run: npm audit signatures
- name: Release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.TOKEN }}
GH_TOKEN: ${{ secrets.TOKEN }}
run: npx semantic-release

0 comments on commit d6b7325

Please sign in to comment.