Skip to content

Tag Monthly Release

Tag Monthly Release #1

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