We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27cb62d commit 49a79faCopy full SHA for 49a79fa
.github/workflows/build.yaml
@@ -15,6 +15,8 @@ on:
15
jobs:
16
check_bash_installer:
17
name: Bash shell lint check
18
+ if: github.event_name != 'release'
19
+ # This action fails for release event because it can't find the commit SHA
20
runs-on: ubuntu-16.04
21
steps:
22
- name: Checkout repo
@@ -195,7 +197,8 @@ jobs:
195
197
196
198
publish_images:
199
name: Publish container images to registries
- needs: [sysdig_image_scan_forwarder, sysdig_image_scan_installer]
200
+ needs: [sysdig_image_scan_forwarder]
201
+ # We do not depend on scan of installer as check_shell can't run on release, so we skip those jobs
202
203
if: github.event_name == 'release'
204
0 commit comments