We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab0133c commit a082c53Copy full SHA for a082c53
1 file changed
.github/workflows/main.yml
@@ -27,12 +27,15 @@ jobs:
27
- name: Get current date
28
id: date
29
run: echo "::set-output name=date::$(date +'%Y%m%d')"
30
+ - name: Get time in seconds
31
+ id: seconds
32
+ run: echo "::set-output name=seconds::$(date +'%s')"
33
- name: Push build commit
34
run: |
35
cd clone_dir
36
git config user.name github-actions
37
git config user.email github-actions@github.com
38
git add *
- git commit -m "Build Minimal ${{ steps.date.outputs.date }} (${{ $EPOCHSECONDS }})"
39
+ git commit -m "Build Minimal ${{ steps.date.outputs.date }} (${{ steps.seconds.outputs.seconds }})"
40
git pull --rebase
41
git push
0 commit comments