Update deploy.yaml #86
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 | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
permissions: | |
id-token: write # This is required for requesting the JWT | |
contents: read # This is required for actions/checkout | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-latest | |
env: | |
REGION: us-east-1 | |
environment: main | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12" | |
- name: Setup Cloud Formation Linter with Latest Version | |
uses: scottbrenner/cfn-lint-action@v2 | |
- name: Print the Cloud Formation Linter Version & Run Linter. | |
run: | | |
cfn-lint --version | |
cfn-lint -t ./template.yml | |
- uses: aws-actions/setup-sam@v2 | |
- uses: aws-actions/configure-aws-credentials@v4 | |
with: | |
audience: sts.amazonaws.com | |
aws-region: ${{ env.REGION }} | |
role-to-assume: arn:aws:iam::377117578606:role/CodeScanningToSlack | |
- run: | | |
cd ./functions/codeScanningToSlack | |
npm cache clean --force | |
npm install | |
npm run build | |
- run: | | |
cd ./functions/githubWebhookIPValidator | |
npm cache clean --force | |
npm install | |
npm run build | |
- name: Extract branch name | |
id: extract_branch | |
shell: bash | |
run: | | |
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT | |
echo "strippedBranchName=$(echo $branch | sed -e 's/\//-/g')" >> $GITHUB_OUTPUT | |
echo "finalBranch${strippedBranchName:0:100}" >> $GITHUB_OUTPUT | |
echo $branch | |
echo $strippedBranchName | |
echo $finalBranch | |
- run: sam build --use-container | |
- run: sam deploy --debug --no-confirm-changeset --no-fail-on-empty-changeset --stack-name CodeScanningToSlackStack-${{ steps.extract_branch.outputs.finalBranch }} --capabilities CAPABILITY_IAM --region ${{ env.REGION }} --resolve-s3 |