Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
spenes committed Nov 23, 2023
1 parent 81b0359 commit 363b47c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,9 +46,9 @@ jobs:
include:
- suffix: ""
- app: lzo
run_snyk: ${{ !contains(github.ref, 'rc') }}
run_snyk: ${{ contains(github.ref, 'rc') }}
- app: distroless
run_snyk: ${{ !contains(github.ref, 'rc') }}
run_snyk: ${{ contains(github.ref, 'rc') }}

steps:
- uses: actions/checkout@v2
Expand Down Expand Up @@ -79,14 +79,14 @@ jobs:
if: matrix.run_snyk
with:
image: "snowplow/snowplow-s3-loader:${{ github.ref_name }}-${{ matrix.app }}"
args: "--app-vulns --org=data-processing-new"
args: "--app-vulns --org=data-cap"
command: monitor
env:
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

create_release:
needs: test
if: ${{ startsWith(github.ref, 'refs/tags/') && !contains(github.ref, 'rc') }}
if: ${{ startsWith(github.ref, 'refs/tags/') && contains(github.ref, 'rc') }}
runs-on: ubuntu-latest

steps:
Expand Down

0 comments on commit 363b47c

Please sign in to comment.