Skip to content

Attempt 4

Attempt 4 #4

Workflow file for this run

name: Nightly Tag
on:
push:
branches:
- master
- NightlyTest
jobs:
update-nightly-tag:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Create or update nightly tag
uses: mathieudutour/github-tag-action@v6.1
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
default_bump: false
release_branches: master,NightlyTest
tag_prefix: ''
tag_name: nightly
tag_message: 'Nightly build from GitHub Actions'
default_prerelease_bump: false
create_annotated_tag: true