This repository has been archived by the owner on Sep 4, 2024. It is now read-only.
Update nightly tag #15
This file contains 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: 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 |