Skip to content

Commit eb3fea4

Browse files
authored
Only build images for pushed tags (#278)
1 parent a174597 commit eb3fea4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ jobs:
8888
- integration
8989
- integration-boringcrypto
9090
- lint
91-
if: github.event_name == 'push' # We want this job to run for both pushes to main, as well as new tags.
91+
if: github.event_name == 'push' && github.ref_type == 'tag' # Only run for tag pushes
9292
permissions:
9393
contents: write # Needed to be able to create releases.
9494
id-token: write

0 commit comments

Comments
 (0)