Skip to content

Commit

Permalink
Fix date
Browse files Browse the repository at this point in the history
Generate named releases. Using make_latest should allow us to always use the latest one, while also retaining older releases, in case anything goes wrong in future updates.
  • Loading branch information
Lord-Kamina committed Jul 22, 2024
1 parent 94362a6 commit 433c3b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -87,12 +87,13 @@ jobs:

- name: Current Date
id: date
shell: bash
run: echo "date=$(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT

- name: Release
uses: softprops/action-gh-release@v2
with:
name: release
tag_name: release-${{ steps.date.outputs.date }}
name: release-${{ steps.date.outputs.date }}
body: gvsbuild-${{ steps.date.outputs.date }}
make_latest: true
files: "*.zip"

0 comments on commit 433c3b5

Please sign in to comment.