Attempt 12 #12
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Nightly Tag | |
on: | |
push: | |
branches: | |
- master | |
- NightlyTest | |
jobs: | |
update-nightly-tag: | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get current commit hash | |
id: get_commit | |
run: echo "::set-output name=commit_sha::$(git rev-parse HEAD)" | |
- name: Create or update nightly tag | |
uses: rickstaa/action-create-tag@v1 | |
with: | |
tag: "nightly" | |
force_push_tag: true |