Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:FixMyBerlin/trassenscout into de…
Browse files Browse the repository at this point in the history
…velop
  • Loading branch information
ohrie committed Dec 7, 2023
2 parents 38e4253 + 9681a52 commit f32bded
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
build-push-deploy-docker-images:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4

- name: Upgrade AWS CLI version and setup lightsailctl
run: |
Expand All @@ -58,17 +58,17 @@ jobs:
sudo chmod +x /usr/local/bin/lightsailctl
- name: Configure AWS credentials
uses: aws-actions/configure-aws-credentials@v1
uses: aws-actions/configure-aws-credentials@v4
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: eu-central-1

- name: Setup buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Build app image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
file: ./docker/app/Dockerfile
push: false
Expand All @@ -78,7 +78,7 @@ jobs:
tags: public.ecr.aws/n0p8j4k5/trassenscout/app:${{ github.sha }}

- name: Build nginx image
uses: docker/build-push-action@v3
uses: docker/build-push-action@v5
with:
context: ./docker/nginx
push: false
Expand Down

0 comments on commit f32bded

Please sign in to comment.