Skip to content

Commit

Permalink
workflows: Workaround for release-drafter
Browse files Browse the repository at this point in the history
  • Loading branch information
mkutlak committed Feb 13, 2024
1 parent 67d0f66 commit 4376c99
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release-drafter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,10 @@ jobs:
update_release_draft:
runs-on: ubuntu-latest
steps:
- uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # [email protected]
- name: Publish release
uses: release-drafter/release-drafter@3f0f87098bd6b5c5b9a36d49c41d998ea58f9348 # [email protected]
with:
publish: ${{ github.ref == 'refs/heads/master' }}
commitish: master # workaround: https://github.com/release-drafter/release-drafter/issues/1125
publish: github.ref == 'refs/heads/master'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 4376c99

Please sign in to comment.