Skip to content

Commit

Permalink
Merge pull request #144 from spacemeshos/post-certifier-service
Browse files Browse the repository at this point in the history
Post certifier service
  • Loading branch information
poszu authored Nov 10, 2023
2 parents 7d5b235 + bdbae9e commit 0495b2c
Show file tree
Hide file tree
Showing 15 changed files with 1,452 additions and 82 deletions.
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

0 comments on commit 0495b2c

Please sign in to comment.