Skip to content

Commit

Permalink
fix: release and build should properly tag the image
Browse files Browse the repository at this point in the history
  • Loading branch information
davidzwa committed Oct 15, 2023
1 parent 5c2b6f4 commit 0e38fed
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ jobs:
with:
draft: ${{ github.ref_name == 'develop' }}
prerelease: ${{ contains(env.DIST_VERSION, 'rc') || contains(env.DIST_VERSION, 'unstable') }}
tag_name: ${{ steps.copy.outputs.image }}
tag_name: ${{ steps.copy.outputs.version }}
release_name: MonsterPi ${{ steps.copy.outputs.image }}
body: "Release notes not added" # ${{ steps.build_changelog.outputs.changelog }}
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
with:
draft: ${{ github.ref_name == 'develop' }}
prerelease: ${{ contains(env.DIST_VERSION, 'rc') || contains(env.DIST_VERSION, 'unstable') }}
tag_name: ${{ steps.copy.outputs.image }}
tag_name: ${{ steps.copy.outputs.version }}
release_name: MonsterPi ${{ steps.copy.outputs.image }}
body: "Release notes not added" # ${{ steps.build_changelog.outputs.changelog }}
env:
Expand Down

0 comments on commit 0e38fed

Please sign in to comment.