We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c50182b commit 298e43aCopy full SHA for 298e43a
1 file changed
.github/workflows/nightly.yml
@@ -64,13 +64,17 @@ jobs:
64
echo "$GPG_PASSPHRASE" | gpg --batch --pinentry-mode loopback \
65
--passphrase-fd 0 --detach-sign --armor REDasm-windows-x86_64.zip
66
67
+ - name: Get current date
68
+ id: date
69
+ run: echo "date=$(date -u +'%Y-%m-%d')" >> $GITHUB_OUTPUT
70
+
71
- name: Publish nightly release
72
uses: softprops/action-gh-release@v3
73
with:
74
token: ${{ secrets.RD_WORKSPACE_CI_TOKEN }}
75
repository: redasm-dev/redasm
76
tag_name: nightly
- name: "Nightly Build"
77
+ name: "Nightly Build (${{ steps.date.outputs.date }})"
78
prerelease: true
79
body: ${{ needs.check.outputs.changelog }}
80
files: |
0 commit comments