Skip to content

v2.0.2

v2.0.2 #28

name: Build release artifacts
on:
release:
types: [published]
jobs:
define-version:
uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
publish-container:
needs:
- define-version
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
with:
imagename: ghcr.io/project-origin/registry-server
version: ${{ needs.define-version.outputs.version }}
context: .
dockerfile: ./Registry.Dockerfile
push: true
publish-chart:
needs:
- define-version
- publish-container
uses: project-origin/.github/.github/workflows/reusable-publish-chart.yaml@8e12b0b09d14e9835e256b51313f18d5e710760a
with:
version: ${{ needs.define-version.outputs.version }}
chart_folder: chart
helm_registry_repository: project-origin/helm-registry
prerelease: ${{ github.event.release.prerelease }}
secrets:
helm_registry_token: ${{ secrets.HELM_REGISTRY_TOKEN }}