Skip to content

Commit

Permalink
fix bugs
Browse files Browse the repository at this point in the history
Signed-off-by: juicer <[email protected]>
  • Loading branch information
cw-Guo committed Sep 27, 2024
1 parent 773ccb1 commit 998844c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/release-tool.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ jobs:
git config user.name "GitHub Actions Bot"
git config user.email "[email protected]"
- name: Create release branch
- name: Create release branch
run: |
git checkout -b release-${{ github.event.inputs.version }}
git push --set-upstream origin release-${{ github.event.inputs.version }}
create-release-pr:
name: create release pr
runs-on: ubuntu-latest
needs: create-release-branch
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand Down Expand Up @@ -55,7 +57,7 @@ jobs:
- name: Commit & Push changes
run: |
git add manifests/setup/fluent-operator-deployment.yaml manifests/setup/setup.yaml charts/fluent-operator/values.yaml
git add manifests/setup/fluent-operator-deployment.yaml manifests/setup/setup.yaml charts/fluent-operator/values.yaml VERSION
git commit -m "Bump version to ${{ github.event.inputs.version }}"
git push --set-upstream origin release-release-${{ github.event.inputs.version }}
Expand All @@ -67,6 +69,8 @@ jobs:
This PR updates the version to ${{ github.event.inputs.version }} in the following files:
- manifests/setup/fluent-operator-deployment.yaml
- manifests/setup/setup.yaml
- charts/fluent-operator/values.yaml
- VERSION
Please review and merge to release the new version.
branch: release-release-${{ github.event.inputs.version }}
Expand Down

0 comments on commit 998844c

Please sign in to comment.