Skip to content

Commit

Permalink
Merge pull request #35 from pdettori/fix-ci
Browse files Browse the repository at this point in the history
🐛 fix tag in ci
  • Loading branch information
pdettori authored Nov 7, 2024
2 parents 208f909 + c318084 commit fe61e47
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ jobs:
run: |
chartVersion=$(echo ${{ github.ref_name }} | cut -c 2-)
sed -i.bk -e "s|image_placeholder|${{ env.REGISTRY }}/${{ env.REPO }}/suspend-webhook|g" \
-e "s|tag_placeholder|${chartVersion}|g" \
-e "s|tag_placeholder|${{github.ref_name}}|g" \
${{ env.CHARTS_PATH }}/suspend-webhook/values.yaml
helm package ${{ env.CHARTS_PATH }}/suspend-webhook --destination . --version ${chartVersion} --app-version ${chartVersion}
helm push ./suspend-webhook-chart-${chartVersion}.tgz oci://${{ env.REGISTRY }}/${{ env.REPO }}
Expand All @@ -95,7 +95,7 @@ jobs:
run: |
chartVersion=$(echo ${{ github.ref_name }} | cut -c 2-)
sed -i.bk -e "s|image_placeholder|${{ env.REGISTRY }}/${{ env.REPO }}/kueue-ks|g" \
-e "s|tag_placeholder|${{github.ref_name}}|g" \
-e "s|tag_placeholder|${chartVersion}|g" \
-e "s|cm_placeholder|${{ env.REGISTRY }}/${{ env.REPO }}/cluster-metrics|g" \
${{ env.CHARTS_PATH }}/kueue-ks/values.yaml
helm package ${{ env.CHARTS_PATH }}/kueue-ks --destination . --version ${chartVersion} --app-version ${chartVersion}
Expand Down

0 comments on commit fe61e47

Please sign in to comment.