-
Notifications
You must be signed in to change notification settings - Fork 53
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ci: added docker build and push for issuer and verifier (#16)
- Loading branch information
1 parent
221d09f
commit b442978
Showing
1 changed file
with
17 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -38,6 +38,23 @@ jobs: | |
MAVEN_PASSWORD: ${{ secrets.MAVEN_PASSWORD }} | ||
with: | ||
arguments: build publish --no-daemon | ||
- name: Login to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
- name: Build and push Docker images (issuer) | ||
uses: docker/[email protected] | ||
with: | ||
push: true | ||
file: docker/issuer.Dockerfile | ||
tags: waltid/issuer:latest, waltid/issuer:${{ env.release_version }} | ||
- name: Build and push Docker images (verifier) | ||
uses: docker/[email protected] | ||
with: | ||
push: true | ||
file: docker/verifier.Dockerfile | ||
tags: waltid/verifier:latest, waltid/verifier:${{ env.release_version }} | ||
- name: Changelog | ||
uses: ardalanamini/auto-changelog@v3 | ||
id: changelog | ||
|