constellation/.github/workflows/build-joinservice-image.yml

36 lines
882 B
YAML
Raw Normal View History

2022-07-05 08:13:19 -04:00
name: Build and upload join-service image
on:
workflow_dispatch:
push:
branches:
- main
paths:
2022-07-05 08:13:19 -04:00
- "joinservice/**"
- "internal/atls/**"
- "internal/attestation/**"
- "internal/constants/**"
- "internal/file/**"
- "internal/grpc/**"
- "internal/oid/**"
jobs:
2022-07-05 08:13:19 -04:00
build-join-service:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Check out repository
id: checkout
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
2022-07-05 08:13:19 -04:00
- name: Build and upload join-service container image
id: build-and-upload
uses: ./.github/actions/build_micro_service
with:
2022-07-05 08:13:19 -04:00
name: join-service
projectVersion: '0.0.0'
dockerfile: joinservice/Dockerfile
githubToken: ${{ secrets.GITHUB_TOKEN }}