-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release will make a PR that updates chart.yaml and this trigger the h…
…elm chart release Signed-off-by: Jirka Kremser <[email protected]>
- Loading branch information
Showing
3 changed files
with
50 additions
and
25 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,31 +10,9 @@ permissions: | |
contents: read | ||
|
||
jobs: | ||
check-if-new-version: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: yq | ||
uses: mikefarah/[email protected] | ||
- name: Compare versions | ||
run: | | ||
latest_version=$(make version) | ||
maybe_old_version=$(yq '.version' helmchart/otel-add-on/Chart.yaml) | ||
echo "latest_version: ${latest_version}" | ||
echo "maybe_old_version: ${maybe_old_version}" | ||
if [ "${latest_version}" != "${maybe_old_version}" ]; then | ||
echo "modifying Chart.yaml.." | ||
yq -i ".version=${latest_version} | .appVersion=${latest_version}" helmchart/otel-add-on/Chart.yaml | ||
git add helmchart/otel-add-on/Chart.yaml | ||
git commit -s -m "Updating Chart.yaml: ${maybe_old_version} -> ${latest_version}" | ||
git push | ||
fi | ||
test: | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.event.head_commit.message, '[post-release]') | ||
needs: [check-if-new-version] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -60,6 +38,7 @@ jobs: | |
publish: | ||
runs-on: ubuntu-latest | ||
if: startsWith(github.event.head_commit.message, '[post-release]') | ||
needs: [test] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,3 +11,49 @@ jobs: | |
uses: kedify/github-meta/.github/workflows/kedify-release.yml@main | ||
with: | ||
tag: ${{ github.ref_name }} | ||
|
||
post-release-work: | ||
runs-on: ubuntu-latest | ||
needs: [ build-and-publish-images ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
token: ${{ secrets.PAT_TOKEN }} | ||
- name: yq | ||
uses: mikefarah/[email protected] | ||
- name: Compare versions | ||
id: version | ||
run: | | ||
latest_version=$(make version) | ||
maybe_old_version=$(yq '.version' helmchart/otel-add-on/Chart.yaml) | ||
echo "latest_version: ${latest_version}" | ||
echo "maybe_old_version: ${maybe_old_version}" | ||
if [ "${latest_version}" != "${maybe_old_version}" ]; then | ||
echo "modifying Chart.yaml.." | ||
yq -i ".version=\"${latest_version}\" | .appVersion=\"${latest_version}\"" helmchart/otel-add-on/Chart.yaml | ||
echo "newVersion=${latest_version}" >> ${GITHUB_OUTPUT} | ||
echo "oldVersion=${maybe_old_version}" >> ${GITHUB_OUTPUT} | ||
fi | ||
- name: Create Pull Request | ||
uses: peter-evans/create-pull-request@b4d51739f96fca8047ad065eccef63442d8e99f7 # tag=v4 | ||
id: cpr | ||
with: | ||
title: "Update webpage" | ||
branch: chart-yaml-update | ||
path: public | ||
token: ${{ secrets.PAT_TOKEN }} | ||
commit-message: "[post-release] Updating Chart.yaml: ${{ steps.version.outputs.oldVersion }} -> ${{ steps.version.outputs.oldVersion }}" | ||
delete-branch: true | ||
base: master | ||
signoff: true | ||
body: | | ||
:package: Chart.yaml update :package: | ||
### automated change | ||
Updating Chart.yaml: ${{ steps.version.outputs.oldVersion }} -> ${{ steps.version.outputs.oldVersion }} | ||
This automated PR was created by [this action](https://github.com/kedify/otel-add-on/actions/runs/${{ github.run_id }}). | ||
- name: Check PR | ||
run: | | ||
echo "Pull Request Number - ${{ steps.cpr.outputs.pull-request-number }}" | tee -a "$GITHUB_STEP_SUMMARY" | ||
echo "Pull Request URL - ${{ steps.cpr.outputs.pull-request-url }}" | tee -a "$GITHUB_STEP_SUMMARY" |
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