From 9bc2903ba21093c2bfc621a27f561d31356a9ccb Mon Sep 17 00:00:00 2001 From: Arindy Date: Sun, 21 Sep 2025 18:06:07 +0200 Subject: [PATCH] add timestamp to release name and tag --- .github/workflows/ci.yaml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index f61378a..20018c9 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -15,9 +15,14 @@ jobs: - name: Build run: make book + - name: Date + id: date + run: echo "TIMESTAMP=$(TZ='Europe/Berlin' date +'%Y.%m.%d.%H%M')" >> "$GITHUB_OUTPUT" + - name: release uses: akkuman/gitea-release-action@v1 with: files: |- out/* - name: Release + name: Release ${{ steps.date.outputs.TIMESTAMP }} + tag_name: ${{ steps.date.outputs.TIMESTAMP }}