Update Tags #332
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 Tags | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
workflow_dispatch: | |
jobs: | |
update: | |
name: Update Tags | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup Nushell | |
uses: hustcer/setup-nu@v3.8 | |
- name: Create missing tags | |
run: | | |
git config --global user.name "$GITHUB_ACTOR" | |
git config --global user.email "<>" | |
nu update.nu | |
- name: Push tags | |
run: | | |
git push --tags |