2022-06-28 11:03:28 -04:00
|
|
|
name: Build and upload verification-service image
|
|
|
|
|
|
|
|
on:
|
|
|
|
workflow_dispatch:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
paths:
|
|
|
|
- "verify/**"
|
|
|
|
- "internal/attestation/**"
|
|
|
|
- "internal/constants/**"
|
|
|
|
|
|
|
|
jobs:
|
2022-07-05 08:13:19 -04:00
|
|
|
build-verification-service:
|
2022-06-28 11:03:28 -04:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
packages: write
|
|
|
|
steps:
|
|
|
|
- name: Check out repository
|
|
|
|
id: checkout
|
2022-10-05 03:24:36 -04:00
|
|
|
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
|
2022-06-28 11:03:28 -04:00
|
|
|
|
2022-09-14 09:14:26 -04:00
|
|
|
- name: Setup Go environment
|
|
|
|
uses: actions/setup-go@268d8c0ca0432bb2cf416faae41297df9d262d7f
|
|
|
|
with:
|
|
|
|
go-version: "1.19.1"
|
|
|
|
|
2022-06-28 11:03:28 -04:00
|
|
|
- name: Build and upload verification-service container image
|
|
|
|
id: build-and-upload
|
2022-07-13 08:04:46 -04:00
|
|
|
uses: ./.github/actions/build_micro_service
|
2022-06-28 11:03:28 -04:00
|
|
|
with:
|
|
|
|
name: verification-service
|
2022-09-14 09:14:26 -04:00
|
|
|
projectVersion: "0.0.0"
|
2022-06-28 11:03:28 -04:00
|
|
|
dockerfile: verify/Dockerfile
|
|
|
|
githubToken: ${{ secrets.GITHUB_TOKEN }}
|