Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Post certifier service #144

Merged
merged 13 commits into from
Nov 10, 2023
12 changes: 10 additions & 2 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,14 @@ on:

jobs:
docker-build:
strategy:
matrix:
include:
- package: service
image: post-service
- package: certifier
image: certifier-service

runs-on: ubuntu-latest
steps:
- name: Git Checkout
Expand All @@ -27,7 +35,7 @@ jobs:
uses: docker/build-push-action@v5
with:
context: .
file: ./service/Dockerfile
file: ./${{ matrix.package }}/Dockerfile
push: true
tags: spacemeshos/post-service:latest, spacemeshos/post-service:${{ GITHUB.SHA }}, spacemeshos/post-service:${{ github.ref_name }}
tags: spacemeshos/${{ matrix.image }}:latest, spacemeshos/${{ matrix.image }}:${{ GITHUB.SHA }}, spacemeshos/${{ matrix.image }}:${{ github.ref_name }}

Loading
Loading