Skip to content

Commit 1e02400

Browse files
committed
feat: release 0.8.1
1 parent 45d9cdd commit 1e02400

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
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

package.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{ buildGoModule }:
22
buildGoModule {
33
pname = "harbor-scanner-sysdig-secure";
4-
version = "0.8.0";
4+
version = "0.8.1";
55
vendorHash = "sha256-NF1GsthdOJCiAorBPRRXtfOzDlSfmXCJYQxPbnf3rBw=";
66
src = ./.;
77
subPackages = [

0 commit comments

Comments
 (0)