Skip to content

Commit a19c6d7

Browse files
committedMar 29, 2024·
Merge remote-tracking branch 'origin/main'
2 parents 94a62bd + 5ff2d35 commit a19c6d7

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed
 

‎.github/workflows/makefile.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -31,14 +31,18 @@ jobs:
3131
with:
3232
name: C-Study-Guideline.pdf
3333
path: C-Study-Guideline.pdf
34+
35+
- name: Get Today
36+
id: date
37+
run: echo "::set-output name=date::$(date +'%Y-%m-%d-%H-%M')"
3438

3539
- name: Create Release
3640
id: create_release
3741
uses: actions/create-release@v1
3842
env:
3943
GITHUB_TOKEN: ${{ secrets.CI_TOKEN }}
4044
with:
41-
tag_name: UniqueTag
45+
tag_name: tag-${{ steps.date.outputs.date }}
4246
release_name: Release ${{ github.ref }}
4347
draft: false
4448
prerelease: false

0 commit comments

Comments
 (0)
Please sign in to comment.