Skip to content

Commit

Permalink
Publish helm charts only once the containers are built and pushed
Browse files Browse the repository at this point in the history
  • Loading branch information
mangelajo committed Aug 2, 2024
1 parent d3838b9 commit fbba8ef
Showing 1 changed file with 9 additions and 4 deletions.
13 changes: 9 additions & 4 deletions .github/workflows/build_helm_charts.yaml
Original file line number Diff line number Diff line change
@@ -1,13 +1,18 @@
name: Push to main
name: Push updated Helm charts

on:
push:
branches:
- main
workflow_run:
workflows: ["Build and push container image"]
branches: [main]
types:
- completed

env:
QUAY_ORG: quay.io/jumpstarter-dev

jobs:
publish-helm-charts-containers:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down

0 comments on commit fbba8ef

Please sign in to comment.