Skip to content

Commit

Permalink
Feat: Add timestamp to nightly release tag and name
Browse files Browse the repository at this point in the history
This commit updates the nightly release workflow to include a timestamp in the release tag and name.

-   Appends the `NIGHTLY_TIME` environment variable to the `tag_name` and `name` of the release.
-   Updates the release `body` to reflect the `NIGHTLY_TIME`.
- This change makes release names and tags unique over time.
  • Loading branch information
jacobrein committed Jan 6, 2025
1 parent bc69e3f commit 30aba80
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/nightly_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,8 +73,8 @@ jobs:
fail_on_unmatched_files: true
prerelease: true
generate_release_notes: true
tag_name: nightly
name: OtakuWorld Nightly Release
tag_name: nightly_${{ env.NIGHTLY_TIME }}
name: OtakuWorld Nightly Release ${{ env.NIGHTLY_TIME }}
body: Nightly release of OtakuWorld at ${{ env.NIGHTLY_TIME }}
files: |
${{ github.workspace }}/release-artifacts/**
Expand Down

0 comments on commit 30aba80

Please sign in to comment.