Skip to content
This repository has been archived by the owner on Apr 2, 2024. It is now read-only.

white space change to kick deploy #2

white space change to kick deploy

white space change to kick deploy #2

Workflow file for this run

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