Change to trigger a new helm chart release #58
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: Build and push container image | |
on: | |
workflow_dispatch: | |
push: | |
tags: | |
- '*' | |
branches: | |
- main | |
env: | |
REGISTRY: quay.io | |
IMAGE_NAME: jumpstarter-dev/jumpstarter-controller | |
QUAY_ORG: quay.io/jumpstarter-dev | |
jobs: | |
build-and-push-image: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get version | |
run: | | |
VERSION=$(git describe --long --tags) | |
VERSION=${VERSION#v} # remove the leading v prefix for version | |
echo "VERSION=${VERSION}" >> $GITHUB_ENV | |
echo "VERSION=${VERSION}" | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: jumpstarter-dev+jumpstarter_ci | |
password: ${{ secrets.QUAY_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
- name: Build and push Docker image | |
id: push | |
uses: docker/build-push-action@v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta.outputs.tags }},${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ env.VERSION }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Generate artifact attestation | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | |
subject-digest: ${{ steps.push.outputs.digest }} | |
push-to-registry: true | |
publish-helm-charts-containers: | |
needs: build-and-push-image | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Get version | |
run: | | |
VERSION=$(git describe --long --tags) | |
VERSION=${VERSION#v} # remove the leading v prefix for version | |
echo "VERSION=${VERSION}" >> $GITHUB_ENV | |
echo "VERSION=${VERSION}" | |
- name: Build helm charts | |
run: | | |
echo packaging ${VERSION} | |
# patch the sub-chart app-version, because helm package won't do it | |
sed -i "s/^appVersion:.*/appVersion: $VERSION/" deploy/helm/jumpstarter/charts/jumpstarter-controller/Chart.yaml | |
helm package ./deploy/helm/jumpstarter --version "${VERSION}" --app-version "${VERSION}" | |
- name: Login helm | |
env: | |
PASSWORD: ${{ secrets.QUAY_TOKEN }} | |
USER: jumpstarter-dev+jumpstarter_ci | |
run: | |
helm registry login quay.io -u ${USER} -p ${PASSWORD} | |
- name: Push helm charts | |
run: | | |
helm push jumpstarter-*.tgz oci://${{ env.QUAY_ORG }}/helm |