diff options
author | saturneric <[email protected]> | 2025-05-01 17:02:34 +0000 |
---|---|---|
committer | saturneric <[email protected]> | 2025-05-01 17:02:34 +0000 |
commit | edea78a6ae6f14a5d7c1cd097a9a483047f354cb (patch) | |
tree | 441a81a3ccbfeabcc1445a3e5aebfa236d0c3a63 | |
parent | fix: rapth modules in AppImage (diff) | |
download | GpgFrontend-edea78a6ae6f14a5d7c1cd097a9a483047f354cb.tar.gz GpgFrontend-edea78a6ae6f14a5d7c1cd097a9a483047f354cb.zip |
feat: add title to nightly release
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/testing-nightly.yml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/.github/workflows/testing-nightly.yml b/.github/workflows/testing-nightly.yml index 4e4459e3..f9b464fd 100644 --- a/.github/workflows/testing-nightly.yml +++ b/.github/workflows/testing-nightly.yml @@ -358,13 +358,17 @@ jobs: - name: List files run: ls -rl artifacts/ + - name: Generate Release Title with Date + id: release_title + run: echo "title=Nightly Build $(date +'%Y-%m-%d')" >> $GITHUB_OUTPUT + - name: Update Nightly Release uses: softprops/action-gh-release@v2 env: GITHUB_TOKEN: ${{ secrets.USER_GITHUB_TOKEN }} with: tag_name: nightly - name: "Nightly Build" + name: ${{ steps.release_title.outputs.title }} draft: false prerelease: true body: | |