Skip to content

Commit

Permalink
Almsot complete
Browse files Browse the repository at this point in the history
  • Loading branch information
Wraient committed Oct 26, 2024
1 parent 4045734 commit 4a14bb0
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: '1.23.2'

- name: Install Dependencies
run: go mod tidy # Install Go dependencies
run: go mod tidy

- name: Comment go-winio for Linux Build
run: |
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
with:
name: curd-binaries
path: Build # Specify where to download the artifacts

- name: Bump Version
id: bump_version
run: |
Expand All @@ -107,6 +107,7 @@ jobs:
git add VERSION.txt
git commit -m "Bump version to $new_version"
git tag "v$new_version"
echo "::set-output name=new_version::$new_version"
- name: Update Inno Setup Script with New Version
run: |
Expand All @@ -124,7 +125,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
tag_name: "v${{ steps.bump_version.outputs.new_version }}" # Use the bumped version as tag
release_name: "Curd v${{ steps.bump_version.outputs.new_version }}" # Use new version in release name
name: "Curd v${{ steps.bump_version.outputs.new_version }}" # Use new version in release name
draft: false
prerelease: false
env:
Expand Down

0 comments on commit 4a14bb0

Please sign in to comment.