Skip to content

Commit

Permalink
fix(ci): Release workflow now works
Browse files Browse the repository at this point in the history
  • Loading branch information
reitzig committed Jun 26, 2023
1 parent 22b4e0a commit 37c2955
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
name: "Create Release"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Is pre-release?
id: is_pre_release
run: |
Expand All @@ -19,12 +21,11 @@ jobs:
else
echo ::set-output name=IS_PRERELEASE::false
fi
- name: Release
uses: docker://antonyurchenko/git-release:v3
uses: docker://antonyurchenko/git-release:v5
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
DRAFT_RELEASE: "false"
DRAFT_RELEASE: "true"
PRE_RELEASE: ${{ steps.is_pre_release.outputs.IS_PRERELEASE }}
CHANGELOG_FILE: "CHANGELOG.md"
ALLOW_EMPTY_CHANGELOG: "false"
ALLOW_TAG_PREFIX: "true"

0 comments on commit 37c2955

Please sign in to comment.