Skip to content
This repository has been archived by the owner on Sep 4, 2024. It is now read-only.

Update nightly tag

Update nightly tag #47

Workflow file for this run

name: Update nightly tag
on:
schedule:
- cron: "10 4 * * *" # runs at 4:10 AM UTC
jobs:
nightly-tag:
name: Update nightly tag
runs-on: ubuntu-latest
permissions: write-all
steps:
- name: Checkout local repository
uses: actions/checkout@v3
with:
token: ${{ secrets.PAT }}
- name: Update nightly tag
run: git tag -f nightly
- name: Push tag
run: git push origin nightly --force