Doc: Apache YuniKorn gang-scheduling for kubeflow training-operator (… #68
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: Package & Push Flyte Helm Charts | |
on: | |
push: | |
branches: | |
- master | |
- rc/* | |
workflow_dispatch: | |
jobs: | |
publish-development-helm-chart: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
chart: ["flyte-binary", "flyte-core"] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install Helm | |
uses: azure/setup-helm@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: "${{ secrets.FLYTE_BOT_USERNAME }}" | |
password: "${{ secrets.FLYTE_BOT_PAT }}" | |
- name: Publish Helm chart to GHCR | |
working-directory: charts | |
run: | | |
helm package \ | |
--app-version=${{ github.sha }} \ | |
--version=0.0-${{ github.sha }} \ | |
${{ matrix.chart }} | |
helm push ${{ matrix.chart }}-*.tgz oci://ghcr.io/flyteorg/helm-charts |