Skip to content

Commit

Permalink
fix: github action
Browse files Browse the repository at this point in the history
  • Loading branch information
wintbiit committed Dec 12, 2023
1 parent e0cb864 commit 9413a2b
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ jobs:
docker:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ""
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -239,7 +239,7 @@ jobs:
docker-mini:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ""
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down Expand Up @@ -301,7 +301,7 @@ jobs:
docker-full:
runs-on: ubuntu-latest
needs: [ release ]
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ""
if: github.event_name == 'push' && needs.release.outputs.NEW_VERSION != ''
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
Expand Down

0 comments on commit 9413a2b

Please sign in to comment.