Skip to content

Commit 231e44a

Browse files
committed
Correct syntax in docker.yaml workflow
This broke very quietly in https://github.com/matrix-org/rust-synapse-compress-state/actions/runs/16938635005
1 parent a54194c commit 231e44a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/docker.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,9 +38,9 @@ jobs:
3838
type=sha,prefix=,format=long
3939
type=semver,pattern=v{{version}}
4040
type=semver,pattern=v{{major}}.{{minor}}
41-
41+
4242
- name: Don't push to registry if this is a PR
43-
if: "${{ github.event_name }}" = "pull_request"
43+
if: github.event_name == 'pull_request'
4444
run: |
4545
echo "Not pushing the image to any container registry as this workflow is running on a pull request"
4646
exit 0

0 commit comments

Comments
 (0)