Skip to content

v1.1.0

v1.1.0 #3

name: Build release artifacts
on:
release:
types: [published]
jobs:
define-version:
uses: project-origin/.github/.github/workflows/reusable-tag-version.yaml@b201c70058e9437b2159095504555c1ed0b249de
publish-container:
needs:
- define-version
uses: project-origin/.github/.github/workflows/reusable-build-push-container-ghcr.yaml@b201c70058e9437b2159095504555c1ed0b249de
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@b201c70058e9437b2159095504555c1ed0b249de
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 }}