Bump our Calendar Version #3
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: Bump our Calendar Version | |
| on: | |
| workflow_dispatch: | |
| schedule: | |
| - cron: '30 3 1 * *' | |
| jobs: | |
| tag: | |
| name: Tag Monthly Release | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Get Current Time | |
| uses: josStorer/[email protected] | |
| id: current-time | |
| - name: Bump Calendar Version | |
| uses: rickstaa/[email protected] | |
| with: | |
| tag: ${{ steps.current-time.outputs.year }}.${{ steps.current-time.outputs.month }}.0 |