Skip to content

Commit

Permalink
Fix workflow script
Browse files Browse the repository at this point in the history
  • Loading branch information
rnijveld committed Apr 6, 2024
1 parent 2881efb commit ef2dd74
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,25 +30,25 @@ jobs:

- name: Run docker build (latest)
if: ${{ matrix.latest }}
run:
run: |
docker buildx build . \
--push \
--platform linux/amd64,linux/arm64 \
--no-cache \
--pull \
--build-arg "DEBIAN_VERSION=${{matrix.version}}" \
-t "ghcr.io/tweedegolf/debian:${{matrix.version}}" \
-t "ghcr.io/tweedegolf/debian:${{matrix.alt}}" \
-t "ghcr.io/tweedegolf/debian:latest"
--tag "ghcr.io/tweedegolf/debian:${{matrix.version}}" \
--tag "ghcr.io/tweedegolf/debian:${{matrix.alt}}" \
--tag "ghcr.io/tweedegolf/debian:latest"
- name: Run docker build
if: ${{ !matrix.latest }}
run:
run: |
docker buildx build . \
--push \
--platform linux/amd64,linux/arm64 \
--no-cache \
--pull \
--build-arg "DEBIAN_VERSION=${{matrix.version}}" \
-t "ghcr.io/tweedegolf/debian:${{matrix.version}}" \
-t "ghcr.io/tweedegolf/debian:${{matrix.alt}}"
--tag "ghcr.io/tweedegolf/debian:${{matrix.version}}" \
--tag "ghcr.io/tweedegolf/debian:${{matrix.alt}}"

0 comments on commit ef2dd74

Please sign in to comment.