Skip to content

Commit

Permalink
fix(deps): Update testcontainers
Browse files Browse the repository at this point in the history
  • Loading branch information
heubeck committed Oct 26, 2023
1 parent 01c27f3 commit 1a1d32d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ jobs:
ci:
name: Application Build
runs-on: ubuntu-latest
if: github.actor != 'dependabot[bot]'
steps:
- name: Checkout Code
uses: actions/checkout@v4
Expand Down Expand Up @@ -42,6 +41,7 @@ jobs:
- name: Build AMD64 binary
uses: docker/build-push-action@v5
if: github.ref == 'refs/heads/main'
with:
tags: result:amd64
platforms: linux/amd64
Expand All @@ -53,6 +53,7 @@ jobs:

- name: Build ARM v7 binary
uses: docker/build-push-action@v5
if: github.ref == 'refs/heads/main'
with:
tags: result:arm-v7
platforms: linux/arm/v7
Expand All @@ -63,6 +64,7 @@ jobs:
push: false

- name: Extract results
if: github.ref == 'refs/heads/main'
run: |
for arch in amd64 arm-v7; do
id=$(docker create result:$arch)
Expand Down

0 comments on commit 1a1d32d

Please sign in to comment.