Skip to content

Attempt 8

Attempt 8 #8

Workflow file for this run

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: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
custom_tag: nightly
commit_sha: ${{ steps.get_commit.outputs.commit_sha }}
create_annotated_tag: true
tag_prefix: ''