Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
634750802 committed Oct 9, 2024
1 parent cde5608 commit 25f2390
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
name: Build and Push Backend Image
runs-on: ubuntu-latest
needs: docker-metadata
if: ${{needs.docker-metadata.outputs.should-build-backend}}
if: ${{needs.docker-metadata.outputs.should-build-backend != 'false'}}
permissions:
contents: read
packages: write
Expand Down Expand Up @@ -111,7 +111,7 @@ jobs:
name: Build and Push Frontend Image
runs-on: ubuntu-latest
needs: docker-metadata
if: ${{needs.docker-metadata.outputs.should-build-frontend}}
if: ${{needs.docker-metadata.outputs.should-build-frontend != 'false'}}
permissions:
contents: read
packages: write
Expand Down

0 comments on commit 25f2390

Please sign in to comment.