Skip to content

Commit

Permalink
fix(ci): github action YAML issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hippothomas committed Jan 26, 2024
1 parent 6847c63 commit ca25720
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,12 @@ jobs:
file: ./Dockerfile
platforms: linux/amd64
build-args: VERSION=${{ secrets.PHP_VERSION }}
push: github.event_name != 'pull_request'
push: ${{ github.event_name != 'pull_request' }}
tags: waistlineapi/waistline-api:$APP_VERSION-amd64

arm-build:
name: Build & Deploy (ARM)
if: github.event_name != 'pull_request'
needs: set-environment
runs-on: buildjet-4vcpu-ubuntu-2204-arm
steps:
Expand All @@ -82,7 +83,7 @@ jobs:
file: ./Dockerfile
platforms: linux/arm64
build-args: VERSION=${{ secrets.PHP_VERSION }}
push: github.event_name != 'pull_request'
push: ${{ github.event_name != 'pull_request' }}
tags: waistlineapi/waistline-api:$APP_VERSION-arm64

combine-manifest:
Expand Down

0 comments on commit ca25720

Please sign in to comment.