Skip to content

Commit

Permalink
ci: fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
dstrates committed Dec 14, 2024
1 parent 7029e2e commit d8327c6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ run-name: Release by @${{ github.actor }} ${{ github.sha }}
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
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')"
steps:
- name: Checkout Repository
Expand All @@ -28,7 +32,7 @@ jobs:
- name: Set up Auto
uses: auto-it/setup-auto@v1
with:
gh-token: ${{ secrets.GITHUB_TOKEN }}
gh-token: ${{ secrets.GH_TOKEN }}

- name: Release
run: auto shipit

0 comments on commit d8327c6

Please sign in to comment.