Update Tags #718
This file contains hidden or 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: Create missing tags | |
| run: | | |
| git config --global user.name "$GITHUB_ACTOR" | |
| git config --global user.email "<>" | |
| node update.js | |
| - name: Push tags | |
| run: | | |
| git push --tags |