Skip to content

Commit

Permalink
Sign automatic release commits (#1568)
Browse files Browse the repository at this point in the history
**Description of the change**
- Sign the automatic commits for chart and Carvel releases to pass the
DCO

Signed-off-by: Alejandro Moreno <[email protected]>
  • Loading branch information
alemorcuq authored Jul 18, 2024
1 parent 2d119da commit 138835a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/helm-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ jobs:
yq -i '.spec.template.spec.fetch.0.imgpkgBundle.image = "${{ env.carvel_pkg }}"' carvel/package.yaml
git checkout -B 'release-carvel-${{ env.chart_version }}'
git add carvel/package.yaml
git commit -m 'Release carvel package ${{ env.chart_version }}'
git commit -sm 'Release carvel package ${{ env.chart_version }}'
git push origin 'release-carvel-${{ env.chart_version }}'
- name: Create PR
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/publish-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ jobs:
sed -i "s/\`$PREV_VERSION\`/\`$NEW_VERSION\`/" helm/sealed-secrets/README.md
git checkout -B 'release-chart-${{ inputs.chart }}'
git add helm/sealed-secrets/Chart.yaml helm/sealed-secrets/values.yaml helm/sealed-secrets/README.md
git commit -m 'Release chart ${{ inputs.chart }}'
git commit -sm 'Release chart ${{ inputs.chart }}'
git push origin 'release-chart-${{ inputs.chart }}'
- name: Create PR
Expand Down

0 comments on commit 138835a

Please sign in to comment.