We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8e0b28 commit 5b3efa8Copy full SHA for 5b3efa8
.github/workflows/nightly-tag.yaml
@@ -14,14 +14,17 @@ jobs:
14
with:
15
fetch-depth: 0
16
17
+ - name: Get current commit hash
18
+ id: get_commit
19
+ run: echo "::set-output name=commit_sha::$(git rev-parse HEAD)"
20
+
21
- name: Create or update nightly tag
22
uses: mathieudutour/[email protected]
23
24
github_token: ${{ secrets.GITHUB_TOKEN }}
25
default_bump: false
26
release_branches: master,NightlyTest
27
tag_prefix: ''
- tag_name: nightly
- tag_message: 'Nightly build from GitHub Actions'
- default_prerelease_bump: false
28
+ custom_tag: nightly
29
+ commit_sha: ${{ steps.get_commit.outputs.commit_sha }}
30
create_annotated_tag: true
0 commit comments