Skip to content

Commit

Permalink
ci: added docker build and push for issuer and verifier (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikeplotean authored Nov 3, 2023
1 parent 221d09f commit b442978
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b442978

Please sign in to comment.