Skip to content

Commit

Permalink
more testing
Browse files Browse the repository at this point in the history
Signed-off-by: Sergi Castro <[email protected]>
  • Loading branch information
sergicastro authored Nov 8, 2024
1 parent 9a440b5 commit 7a331e3
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions .github/workflows/make-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,20 @@ jobs:
# git config --global user.email '${{ steps.get-user-id.outputs.user-id }}+${{ steps.app-token.outputs.app-slug }}[bot]@users.noreply.github.com>'
- name: Update kubegres.yaml
run: make deploy
- name: Create and push the new tag
run: |
git add kubegres.yaml config/manager/kustomization.yaml
git commit -m "pre-release-tag: Update kubegres.yaml to version ${{ github.event.inputs.version }}"
git push origin ${{ github.event.inputs.branch }}
git tag ${{ github.event.inputs.version }}
git push origin ${{ github.event.inputs.version }}
- name: Commit and push changes
uses: actions-js/push@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }
message: "pre-release-tag: Update kubegres.yaml to version ${{ github.event.inputs.version }}"
branch: ${{ github.event.inputs.branch }}
- name: Create the release tag
uses: ncipollo/release-action@v1
with:
tag: ${{ github.event.inputs.version }}
# - name: Create and push the new tag
# run: |
# git add kubegres.yaml config/manager/kustomization.yaml
# git commit -m "pre-release-tag: Update kubegres.yaml to version ${{ github.event.inputs.version }}"
# git push origin ${{ github.event.inputs.branch }}
# git tag ${{ github.event.inputs.version }}
# git push origin ${{ github.event.inputs.version }}

0 comments on commit 7a331e3

Please sign in to comment.