Skip to content

v1.1.2

v1.1.2 #5

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