fix: checkout action in release workflow
All checks were successful
release / Release (push) Successful in 3s
All checks were successful
release / Release (push) Successful in 3s
This commit is contained in:
@ -3,7 +3,7 @@ on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
- feat/release_actions
|
||||
- fix/release_action
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
@ -14,15 +14,12 @@ jobs:
|
||||
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
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-depth: 1
|
||||
- name: run_release
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITEA_TOKEN }}
|
||||
run: pipx run python-semantic-release -c .gitea/semantic_release.toml version
|
||||
run: echo "RUNNING RELEASE PIPELINE" # pipx run python-semantic-release -c .gitea/semantic_release.toml version
|
Reference in New Issue
Block a user