Skip to content
This repository was archived by the owner on Oct 14, 2020. It is now read-only.

Commit 17a175c

Browse files
committed
Add builds for remaining parsers
1 parent 3155ce6 commit 17a175c

File tree

1 file changed

+30
-1
lines changed

1 file changed

+30
-1
lines changed

.github/workflows/ci.yaml

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,6 +91,7 @@ jobs:
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

Comments
 (0)