constellation/.github/workflows/build-kms-image.yml
Daniel Weiße b0aafd0c2a Fix Docker builds (#239)
Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-29 16:40:43 +02:00

35 lines
747 B
YAML

name: Build and upload KMS image
env:
REGISTRY: ghcr.io
IMAGE_NAME: kmsserver
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "kms/**"
- "internal/constants/**"
- "internal/file/**"
jobs:
build-kms-server:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out repository
id: checkout
uses: actions/checkout@v3
- name: Build and upload KMS server container image
id: build-and-upload
uses: ./.github/actions/build_micro-service
with:
name: kmsserver
projectVersion: '0.0.0'
dockerfile: kms/Dockerfile
githubToken: ${{ secrets.GITHUB_TOKEN }}