Skip to content

Commit

Permalink
Fix action IFs
Browse files Browse the repository at this point in the history
  • Loading branch information
lmangani authored Jun 28, 2024
1 parent 1557d36 commit e978596
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ jobs:


docker-ghcr-push:
if: github.event_name != 'pull_request' || github.event_name != 'workflow_dispatch'
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: ubuntu-latest
needs: build
permissions:
Expand Down Expand Up @@ -112,7 +112,7 @@ jobs:
dev.heplify-server.image.version=${{needs.build.outputs.HEPLIFY_VERSION || github.event.release.tag_name }}
docker-hub-push:
if: github.event_name != 'pull_request' || github.event_name != 'workflow_dispatch'
if: ${{ github.event_name != 'workflow_dispatch' }}
runs-on: ubuntu-latest
needs: build
permissions:
Expand Down

0 comments on commit e978596

Please sign in to comment.