Skip to content

Commit f102ad1

Browse files
author
Didier Botella
committed
add coverity workflow
1 parent 7c33813 commit f102ad1

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/coverity.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,8 @@ jobs:
2323
cache: maven
2424
- name: Run a script
2525
run: |
26-
./get-auth.sh ${{ secrets.AUTH_KEY }}
26+
AUTH_KEY=${{ secrets.AUTH_KEY }}
27+
./get-auth.sh
2728
shell: bash
2829

2930
- name: Coverity Full Scan

get-auth.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1-
echo $1 >auth-key.txt
1+
echo $AUTH_KEY >auth-key.txt
2+
cat auth-key.txt
23
chmod 400 auth-key.txt

0 commit comments

Comments
 (0)