zeroclutch is deploying Gamebot to production #10
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: Deploy Production | |
run-name: ${{ github.actor }} is deploying Gamebot to production | |
on: | |
# Run scheduled weekly restarts at 5:30PM Saturday UTC (10:30 PDT) | |
schedule: | |
- cron: "30 17 * * SAT" | |
workflow_dispatch: | |
inputs: | |
branch: | |
type: string | |
default: master | |
required: false | |
jobs: | |
deploy-staging: | |
uses: ./.github/workflows/deploy-staging.yml | |
with: | |
branch: master | |
secrets: inherit | |
deploy: | |
needs: deploy-staging | |
uses: ./.github/workflows/deploy.yml | |
with: | |
environment: production | |
log_level: info | |
branch: master | |
secrets: inherit |