Skip to content

Commit

Permalink
chore: Update DockerHub workflow to use new platform configurations
Browse files Browse the repository at this point in the history
  • Loading branch information
vitorfdl committed Jun 21, 2024
1 parent 966c709 commit 43d234e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-dockerhub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,12 +44,12 @@ jobs:
run: touch .env

- name: Install cross (Linux ARM64 only)
if: matrix.config.platform == 'linux-arm64'
if: matrix.config.platform == 'linux-arm64-v8'
run: cargo install cross

- name: Build Binary
run: |
if [ "${{ matrix.config.platform }}" == "linux-arm64" ]; then
if [ "${{ matrix.config.platform }}" == "linux-arm64-v8" ]; then
cross build --locked --release --target ${{ matrix.config.target }}
else
cargo build --locked --release --target ${{ matrix.config.target }}
Expand Down

0 comments on commit 43d234e

Please sign in to comment.