Skip to content

Commit

Permalink
Split tags and versions in the workflow.
Browse files Browse the repository at this point in the history
  • Loading branch information
fewtarius committed Jul 10, 2024
1 parent f233302 commit 57e63ad
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,12 @@ jobs:
with:
clean: false
ref: "${{ steps.branch.outputs.branch }}"
- name: Set the tag
id: tag
run: echo "tag=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
- name: Set the version
id: version
run: echo "version=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
run: echo "version=$(date +'%Y%m%d.%H%M.%S')" >> $GITHUB_OUTPUT
- name: Build Minimal Images
run: |
set -e
Expand All @@ -35,7 +38,7 @@ jobs:
- name: Create a release snapshot.
uses: ncipollo/release-action@v1
with:
tag: "${{ steps.version.outputs.version }}"
tag: "${{ steps.tag.outputs.tag }}"
body: |
## Downloads
This release contains a snapshot of the repository tree. Downloadable images are available at [SteamFork.org](https://www.steamfork.org/images/steamfork-installer/) with updates available OTA. A download link to the latest installation image can be found below.
Expand Down

0 comments on commit 57e63ad

Please sign in to comment.