Commit 16efa0c 1 parent 3f5195d commit 16efa0c Copy full SHA for 16efa0c
File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 24
24
uses : docker://thehiveproject/cortex-neurons-builder:latest
25
25
with :
26
26
args : |
27
- --namespace cortexneurons --path analyzers --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ (github.event.name == 'tag' || github.event.name == 'schedule') && '--stable' || '' }}
27
+ --namespace cortexneurons --path analyzers --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ (startsWith( github.ref, 'refs/tags') || github.event_name == 'schedule') && '--stable' || '' }}
28
28
29
29
build_responders :
30
30
name : Build Responders
38
38
uses : docker://thehiveproject/cortex-neurons-builder:latest
39
39
with :
40
40
args : |
41
- --namespace cortexneurons --path responders --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ (github.event.name == 'tag' || github.event.name == 'schedule') && '--stable' || '' }}
41
+ --namespace cortexneurons --path responders --registry_dockerhub ${{ secrets.REGISTRY_DOCKERHUB }} --registry_harbor ${{ secrets.REGISTRY_HARBOR }} ${{ (startsWith( github.ref, 'refs/tags') || github.event_name == 'schedule') && '--stable' || '' }}
42
42
43
43
build_catalog :
44
44
name : Build Catalog
61
61
responders/responders.json
62
62
- name : Make Release
63
63
uses : softprops/action-gh-release@v1
64
- if : github.event.name == 'tag'
64
+ if : startsWith( github.ref, 'refs/tags/')
65
65
with :
66
66
generate_release_notes : true
67
67
files : |
75
75
name : Build documentation
76
76
runs-on : [ ubuntu-latest ]
77
77
needs : [build_analyzers, build_responders ]
78
- if : github.event.name == 'tag'
78
+ if : startsWith( github.ref, 'refs/tags/')
79
79
steps :
80
80
- uses : actions/checkout@v3
81
81
- name : Prepare documentation files
You can’t perform that action at this time.
0 commit comments