Skip to content

Commit

Permalink
Merge pull request #22 from NickLiffen/NickLiffen-patch-1
Browse files Browse the repository at this point in the history
Update deploy.yaml
  • Loading branch information
NickLiffen authored Jan 2, 2024
2 parents 9d5e448 + 3c9b69f commit 269b1de
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 8 deletions.
34 changes: 28 additions & 6 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,33 @@ jobs:
- uses: actions/setup-python@v4
with:
python-version: "3.12"

- name: Extract branch name
id: extract_branch
shell: bash
run: |
echo "branch=${GITHUB_HEAD_REF:-${GITHUB_REF#refs/heads/}}" >> $GITHUB_OUTPUT
- name: Clean up Branch Name (Valid for CloudFormation Stack Name)
id: formatted_branch
env:
DATA: ${{ steps.extract_branch.outputs.branch }}
run: |
noSpecialChars="$(echo "$DATA" | sed 's/[^a-zA-Z0-9 ]//g')" # Removing any character apart from numbers letters and spaces
lowercase="$(echo "$noSpecialChars" | awk '{print tolower($0)}')" # Making Lowercase
lowercaseDashRepoName="$(echo ${lowercase// /-})" # Replacing spaces with dashses
if [ ${#lowercaseDashRepoName} -gt 100 ]; then
lowercaseDashRepoName=${lowercaseDashRepoName:0:100} # Limiting to only 100 characters
fi
echo "BRANCH=$(echo "$lowercaseDashRepoName")" >> "$GITHUB_OUTPUT"
- name: Echo'ing Branch Names (For Debugging)
run: |
echo ${{ steps.formatted_branch.outputs.BRANCH }}
echo ${{ steps.extract_branch.outputs.branch }}
- name: Setup Cloud Formation Linter with Latest Version
uses: scottbrenner/cfn-lint-action@v2
- name: Print the Cloud Formation Linter Version & Run Linter.
Expand All @@ -47,10 +74,5 @@ jobs:
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
- run: sam build --use-container
- run: sam deploy --debug --no-confirm-changeset --no-fail-on-empty-changeset --stack-name CodeScanningToSlackStack-${{ steps.extract_branch.outputs.branch }} --capabilities CAPABILITY_IAM --region ${{ env.REGION }} --resolve-s3
- run: sam deploy --debug --no-confirm-changeset --no-fail-on-empty-changeset --stack-name CodeScanningToSlackStack-${{ steps.formatted_branch.outputs.BRANCH }} --capabilities CAPABILITY_IAM --region ${{ env.REGION }} --resolve-s3
4 changes: 2 additions & 2 deletions template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ Resources:
Handler: lib/main.handler
Policies:
- AmazonSSMReadOnlyAccess
Runtime: nodejs14.x
Runtime: nodejs20.x
Timeout: 60
Tracing: Active

Expand All @@ -43,7 +43,7 @@ Resources:
Handler: lib/main.handler
Policies:
- AmazonSSMReadOnlyAccess
Runtime: nodejs14.x
Runtime: nodejs20.x
Timeout: 60
Tracing: Active

Expand Down

0 comments on commit 269b1de

Please sign in to comment.