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

Commit c2221f8

Browse files
committed
Add Build job for persistence Providers
1 parent 17a175c commit c2221f8

File tree

1 file changed

+25
-0
lines changed

1 file changed

+25
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,3 +138,28 @@ jobs:
138138
registry: docker.pkg.github.com
139139
path: ./integrations/zap/parser/
140140
tag_with_ref: true
141+
persistenceImages:
142+
name: "Build PersistenceProvider Images"
143+
runs-on: ubuntu-latest
144+
steps:
145+
- uses: actions/checkout@master
146+
# SDK
147+
- uses: docker/build-push-action@v1
148+
name: "Build & Push Persistence SDK"
149+
with:
150+
username: ${{ github.actor }}
151+
password: ${{ github.token }}
152+
repository: j12934/securecodebox/persistence-sdk-nodejs
153+
registry: docker.pkg.github.com
154+
path: ./persistence-sdk/nodejs/
155+
tag_with_ref: true
156+
# Actual PersistenceProviders
157+
- uses: docker/build-push-action@v1
158+
name: "Build & Push Elastic PersistenceProvider Image"
159+
with:
160+
username: ${{ github.actor }}
161+
password: ${{ github.token }}
162+
repository: j12934/securecodebox/persistence-elastic
163+
registry: docker.pkg.github.com
164+
path: ./persistence/persistence-elastic/
165+
tag_with_ref: true

0 commit comments

Comments
 (0)