Skip to content

Commit

Permalink
George/ffs 857 (#51)
Browse files Browse the repository at this point in the history
* uncommenting the push to main trigger for continuous deployment

* updated actions checkout version, see https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ for more info
  • Loading branch information
George Byers authored Jun 10, 2024
1 parent e6fc64d commit ae1c0b4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
id-token: write

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
ref: ${{ inputs.ref }}

Expand Down
14 changes: 7 additions & 7 deletions .github/workflows/cd-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ run-name: Deploy ${{ github.ref_name }} to App ${{ inputs.environment || 'dev' }

on:
# !! Uncomment the following lines once you've set up the dev environment and ready to turn on continuous deployment
# push:
# branches:
# - "main"
# paths:
# - "app/**"
# - "bin/**"
# - "infra/**"
push:
branches:
- "main"
paths:
- "app/**"
- "bin/**"
- "infra/**"
workflow_dispatch:
inputs:
environment:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-infra-auth.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v3
with:
Expand Down

0 comments on commit ae1c0b4

Please sign in to comment.