Skip to content

Commit

Permalink
ci: Added prerelease build on develop
Browse files Browse the repository at this point in the history
  • Loading branch information
JFWenisch authored Sep 27, 2022
1 parent 79736c8 commit da01b62
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/build-go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -102,3 +102,14 @@ jobs:
name: Release ${{needs.version.outputs.tag}}
artifacts: "dist/semver-cli-*"
body: ${{needs.version.outputs.changelog}}

- name: Create a GitHub release
uses: ncipollo/release-action@v1
if: github.ref == 'refs/heads/develop'
with:
tag: ${{needs.version.outputs.tag}}
name: Release ${{needs.version.outputs.tag}}
artifacts: "**/semver-cli-*"
prerelease: true
artifactErrorsFailBuild: true
body: ${{needs.version.outputs.changelog}}

0 comments on commit da01b62

Please sign in to comment.