Skip to content

Commit

Permalink
Fix CD
Browse files Browse the repository at this point in the history
  • Loading branch information
m4dm4rtig4n committed Dec 2, 2022
1 parent 56d4988 commit 1d70daf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build_push_docker.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
# LATEST-DEV
- name: Build and push
uses: docker/build-push-action@v2
if: "github.event.release.prerelease"
if: github.ref == 'refs/heads/pre-release'
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
Expand All @@ -103,7 +103,7 @@ jobs:
# # LATEST
- name: Build and push
uses: docker/build-push-action@v2
if: "!github.event.release.prerelease"
if: github.ref != 'refs/heads/pre-release'
with:
context: .
platforms: linux/amd64,linux/arm64,linux/arm/v6,linux/arm/v7
Expand Down

0 comments on commit 1d70daf

Please sign in to comment.