Skip to content

Attempt 15

Attempt 15 #15

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: rickstaa/action-create-tag@v1
with:
tag: "nightly"
force_push_tag: true