Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
fix(ci)
Browse files Browse the repository at this point in the history
Signed-off-by: Francisco Javier Ribó <elribonazo@gmail.com>
  • Loading branch information
elribonazo committed Sep 30, 2023
1 parent 8074b46 commit 2babea8
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,18 @@ on:
jobs:
release:
runs-on: ubuntu-latest
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 Code
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
submodules: 'recursive' # ensures submodules are cloned properly
token: ${{ secrets.PLUTO_GITHUB }}
fetch-depth: 0

- name: Setup Node.js
uses: actions/setup-node@v3
Expand All @@ -31,4 +38,4 @@ jobs:
GH_TOKEN: ${{ secrets.PLUTO_GITHUB }}
GITHUB_TOKEN: ${{ secrets.PLUTO_GITHUB }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: npx semantic-release --dry-run
run: npx semantic-release

0 comments on commit 2babea8

Please sign in to comment.