Tag Monthly Release #1
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: Tag Monthly Release | |
on: | |
# Allow manual triggering of the workflow | |
workflow_dispatch: | |
# Schedule the workflow to run monthly | |
schedule: | |
# Runs at 03:30 UTC on the first day of every month | |
# Cron syntax: minute hour day-of-month month day-of-week | |
- cron: '30 3 1 * *' | |
concurrency: | |
group: "monthly-release" | |
cancel-in-progress: false | |
jobs: | |
monthly_release: | |
name: Tag Monthly Release | |
uses: niyajali/mifos-mobile-github-actions/.github/workflows/monthly-version-tag.yaml@main | |
secrets: inherit |