9191 runs-on : ubuntu-latest
9292 steps :
9393 - uses : actions/checkout@master
94+ # SDK
9495 - uses : docker/build-push-action@v1
9596 name : " Build & Push Parser SDK"
9697 with :
@@ -100,12 +101,40 @@ jobs:
100101 registry : docker.pkg.github.com
101102 path : ./parser-sdk/nodejs/
102103 tag_with_ref : true
104+ # Actual Parsers
103105 - uses : docker/build-push-action@v1
104- name : " Build & Push Amass Parser SDK "
106+ name : " Build & Push Amass Parser Image "
105107 with :
106108 username : ${{ github.actor }}
107109 password : ${{ github.token }}
108110 repository : j12934/securecodebox/parser-amass
109111 registry : docker.pkg.github.com
110112 path : ./integrations/amass/parser/
111113 tag_with_ref : true
114+ - uses : docker/build-push-action@v1
115+ name : " Build & Push Nmap Parser Image"
116+ with :
117+ username : ${{ github.actor }}
118+ password : ${{ github.token }}
119+ repository : j12934/securecodebox/parser-nmap
120+ registry : docker.pkg.github.com
121+ path : ./integrations/nmap/parser/
122+ tag_with_ref : true
123+ - uses : docker/build-push-action@v1
124+ name : " Build & Push ssh_scan Parser Image"
125+ with :
126+ username : ${{ github.actor }}
127+ password : ${{ github.token }}
128+ repository : j12934/securecodebox/parser-ssh-scan
129+ registry : docker.pkg.github.com
130+ path : ./integrations/ssh_scan/parser/
131+ tag_with_ref : true
132+ - uses : docker/build-push-action@v1
133+ name : " Build & Push OWASP Zap Parser Image"
134+ with :
135+ username : ${{ github.actor }}
136+ password : ${{ github.token }}
137+ repository : j12934/securecodebox/parser-zap
138+ registry : docker.pkg.github.com
139+ path : ./integrations/zap/parser/
140+ tag_with_ref : true
0 commit comments