This repository has been archived by the owner on Apr 2, 2024. It is now read-only.
white space change to kick deploy #2
Workflow file for this run
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 CloudFormation Stack | |
on: | |
push: | |
branches: | |
- "QPASS-*" | |
jobs: | |
deploy: | |
runs-on: guild-deploy-dev | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Deploy CloudFormation Stack | |
run: | | |
aws cloudformation deploy \ | |
--template-file template.yml \ | |
--stack-name YourStackName \ | |
--tags Owner=qpass \ | |
Contact=team-qpass \ | |
Repo=github.com/qpass/guild-pact-broker \ | |
--capabilities CAPABILITY_IAM | |
shell: bash |