Skip to content

Commit 172ca2e

Browse files
authored
Merge pull request #187 from coopernetes/fix/container-scan-on-edge
fix: make container scan blocking on main to gate tag pushes
1 parent 0080938 commit 172ca2e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/docker-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ jobs:
8080
runs-on: ubuntu-latest
8181
permissions:
8282
contents: read
83-
if: startsWith(github.ref, 'refs/tags/v') || github.event_name == 'workflow_dispatch'
83+
if: github.event_name == 'push' || github.event_name == 'workflow_dispatch'
8484
env:
8585
GRYPE_VERSION: "0.111.1"
8686
steps:

0 commit comments

Comments
 (0)