fix #244 by setting the correct helm flags #361
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
permissions: | |
# Grant the ability to checkout the repository | |
contents: write | |
# Grant the ability to push packages | |
packages: write | |
jobs: | |
publish-docker-images: | |
name: Push Docker images | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Publish Docker images | |
run: | | |
make publish-containers | |
make draconctl-image-publish DRACON_VERSION=latest | |
- name: Publish component Helm package | |
run: | | |
set -e | |
DRACON_VERSION_SEMVER=$(sed 's/v//' <<< ${{ github.ref_name }}) | |
make cmd/draconctl/bin | |
# Package, Publish Components | |
bin/cmd/draconctl components package --version ${{ github.ref_name }} --chart-version ${DRACON_VERSION_SEMVER} --name dracon-oss-components ./components | |
helm push dracon-oss-components-${DRACON_VERSION_SEMVER}.tgz oci://ghcr.io/ocurity/dracon/charts | |
# Package, Publish Migrations | |
helm package -u\ | |
--app-version ${{ github.ref_name }}\ | |
--version ${DRACON_VERSION_SEMVER}\ | |
--name dracon-enrichment-db-migrations\ | |
./deploy/enrichment-db-migrations/chart | |
helm push dracon-enrichment-db-migrations oci://ghcr.io/ocurity/dracon/charts |