Release a new nightly hyperswitch control center version #362
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: Release a new nightly hyperswitch control center version | |
on: | |
schedule: | |
- cron: "0 0 * * 1-5" # Run workflow at 00:00 midnight UTC (05:30 AM IST) every Monday-Friday | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
# on: | |
# pull_request_target: | |
# types: | |
# - closed | |
env: | |
# Allow more retries for network requests in cargo (downloading crates) and | |
# rustup (installing toolchains). This should help to reduce flaky CI failures | |
# from transient network timeouts or other issues. | |
CARGO_NET_RETRY: 10 | |
RUSTUP_MAX_RETRIES: 10 | |
jobs: | |
create-nightly-tag: | |
name: Create a nightly tag | |
uses: juspay/hyperswitch/.github/workflows/release-nightly-version-reusable.yml@main | |
secrets: | |
token: ${{ secrets.AUTO_RELEASE_PAT }} |