Implement Helm Chart #7
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
# SPDX-FileCopyrightText: Contributors to the GXF project | |
# | |
# SPDX-License-Identifier: Apache-2.0 | |
name: Build Pipeline | |
on: | |
push: | |
branches: [ "main" ] | |
tags: [ "v**" ] | |
pull_request: | |
branches: [ "main" ] | |
jobs: | |
build: | |
timeout-minutes: 30 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Configure Git | |
run: | | |
git config user.name "$GITHUB_ACTOR" | |
git config user.email "[email protected]" | |
# TODO remove after testing | |
# - name: Set up JDK 17 | |
# uses: actions/setup-java@v3 | |
# with: | |
# java-version: '17' | |
# distribution: 'temurin' | |
# - name: Setup Gradle to generate and submit dependency graphs | |
# uses: gradle/[email protected] | |
# with: | |
# dependency-graph: generate-and-submit | |
# - name: Build with Gradle | |
# run: ./gradlew build integrationTest bootBuildImage | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# - name: Run sonar analysis with Gradle | |
# run: ./gradlew sonar | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} | |
# - name: Publish Docker image | |
# if: github.ref == 'refs/heads/main' || github.ref_type == 'tag' | |
# run: ./gradlew bootBuildImage -PpublishImage | |
# env: | |
# GITHUB_ACTOR: ${{ github.actor }} | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
with: | |
version: v3.12.0 | |
# TODO install and publish cr without creating a new release | |
- name: Publish Helm chart | |
uses: helm/[email protected] | |
with: | |
charts_dir: ./ | |
env: | |
CR_TOKEN: ${{ secrets.GITHUB_TOKEN }} |