File tree 2 files changed +30
-1
lines changed
2 files changed +30
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : tag
2
+ on :
3
+ workflow_run :
4
+ workflows :
5
+ - test
6
+ branches :
7
+ - main
8
+ - dev
9
+ types :
10
+ - completed
11
+ jobs :
12
+ tag :
13
+ name : Tag the repository
14
+ runs-on : ubuntu-latest
15
+ if : ${{ github.event.workflow_run.conclusion == 'success' }}
16
+ permissions :
17
+ contents : write
18
+ steps :
19
+ - uses : actions/checkout@v4
20
+ with :
21
+ fetch-depth : ' 0'
22
+ - name : Bump version and push tag
23
+ uses : anothrNick/github-tag-action@v1
24
+ env :
25
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
26
+ WITH_V : true
27
+ PRERELEASE_SUFFIX : dev
Original file line number Diff line number Diff line change @@ -22,11 +22,13 @@ jobs:
22
22
- name : Unit testing
23
23
env :
24
24
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
25
- COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN}}
25
+ COVERALLS_REPO_TOKEN : ${{ secrets.COVERALLS_REPO_TOKEN }}
26
26
run : make unit-test-publish-report
27
27
- name : Integration testing
28
28
run : make integration-test
29
29
- name : Static Analysis
30
30
run : make static-analysis
31
31
- name : Security Analysis
32
+ env :
33
+ NVD_API_KEY : ${{ secrets.NVD_API_KEY }}
32
34
run : make security-analysis
You can’t perform that action at this time.
0 commit comments