File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed
Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 3737 run : |
3838 VERSION="${{ steps.extract.outputs.version }}"
3939 LATEST="${{ steps.latest.outputs.latest_tag }}"
40- if [ "$VERSION" = "$LATEST" ]; then
40+ if [ "v $VERSION" = "$LATEST" ]; then
4141 echo "No new version detected."
4242 echo "new_version=" >> $GITHUB_OUTPUT
4343 else
@@ -102,16 +102,16 @@ jobs:
102102 - name : Install git-chglog
103103 run : nix profile install nixpkgs#git-chglog
104104
105- - name : Tag with version ${{ needs.get-newer-version.outputs.new-version }}
106- run : git tag ${{ needs.get-newer-version.outputs.new-version }}
105+ - name : Tag with version v ${{ needs.get-newer-version.outputs.new-version }}
106+ run : git tag v ${{ needs.get-newer-version.outputs.new-version }}
107107
108108 - name : Generate changelog
109109 run : git-chglog -c .github/git-chglog/config.yml -o RELEASE_CHANGELOG.md $(git describe --tags $(git rev-list --tags --max-count=1))
110110
111111 - name : Create release
112112 uses : softprops/action-gh-release@v2
113113 with :
114- name : ${{ needs.get-newer-version.outputs.new-version }}
115- tag_name : ${{ needs.get-newer-version.outputs.new-version }}
114+ name : v ${{ needs.get-newer-version.outputs.new-version }}
115+ tag_name : v ${{ needs.get-newer-version.outputs.new-version }}
116116 prerelease : false
117117 body_path : RELEASE_CHANGELOG.md
Original file line number Diff line number Diff line change 11{ buildGoModule } :
22buildGoModule {
33 pname = "harbor-scanner-sysdig-secure" ;
4- version = "0.8.0 " ;
4+ version = "0.8.1 " ;
55 vendorHash = "sha256-NF1GsthdOJCiAorBPRRXtfOzDlSfmXCJYQxPbnf3rBw=" ;
66 src = ./. ;
77 subPackages = [
You can’t perform that action at this time.
0 commit comments