constellation/.github/workflows/build-access-manager-image.yml
Daniel Weiße 3d041cab2b Activation Service and KMS server image build pipeline (#210)
* AB#2171 Add kms server container image build pipeline

* AB#2172 Add activation service container image  build pipeline

* Add manual workflow for building micro-service images

Signed-off-by: Daniel Weiße <dw@edgeless.systems>
2022-06-15 10:50:46 +02:00

33 lines
735 B
YAML

name: Build and upload access-manager image
env:
REGISTRY: ghcr.io
IMAGE_NAME: access-manager
on:
workflow_dispatch:
push:
branches:
- main
paths:
- "access_manager/**"
- "internal/deploy/**"
jobs:
build-access-manager:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out repository
id: checkout
uses: actions/checkout@v3
- name: Build and upload access-manager container image
id: build-and-upload
uses: ./.github/actions/build_micro-service
with:
name: access-manager
dockerfile: access_manager/Dockerfile
github_token: ${{ secrets.GITHUB_TOKEN }}