#13: Merge pull request #1 from dmg0345/feature/fix_example Fix example #13
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
# Production workflow | |
# | |
# This workflow triggers whenever there is a push on the 'master' branch. | |
# The 'master' branch should be configured to restrict direct commits. | |
on: | |
push: | |
branches: master | |
name: (Production) - Full | |
run-name: "#${{ github.run_number }}: ${{ github.event.head_commit.message }}" | |
jobs: | |
full-production: | |
uses: dmg0345/cb/.github/workflows/reusable-full.yml@master | |
secrets: | |
netlify_pat: ${{ secrets.NETLIFY_PAT }} | |
netlify_site_id: ${{ secrets.NETLIFY_SITE_ID }} | |
with: | |
docker_base_image: dmg00345/cb:latest | |
deploy: production | |
deploy_alias: production |