Skip to content

Commit

Permalink
ci: Fix equality typo
Browse files Browse the repository at this point in the history
  • Loading branch information
FoxxMD committed Feb 21, 2024
1 parent be1d6a7 commit ee5a742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publishImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Build and Push Images to Registries
runs-on: ubuntu-latest
# only run if we've specified image tag to push to
if: ${{ (github.event_name === 'push' || github.event.workflow_run.conclusion == 'success') && (vars.DOCKERHUB_IMAGE_NAME != '' || vars.GHCR_IMAGE_NAME != '') }}
if: ${{ (github.event_name == 'push' || github.event.workflow_run.conclusion == 'success') && (vars.DOCKERHUB_IMAGE_NAME != '' || vars.GHCR_IMAGE_NAME != '') }}
# https://docs.github.com/en/actions/security-guides/automatic-token-authentication#permissions-for-the-github_token
permissions:
packages: write
Expand Down

0 comments on commit ee5a742

Please sign in to comment.