-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OPSEXP-2234 Fix updatecli chart reformat bug (#97)
- Loading branch information
Showing
2 changed files
with
11 additions
and
8 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 |
---|---|---|
|
@@ -2,37 +2,40 @@ | |
name: Version bumps | ||
on: | ||
workflow_dispatch: | ||
pull_request: | ||
types: | ||
- opened | ||
branches: | ||
- main | ||
|
||
permissions: | ||
contents: write | ||
|
||
env: | ||
UPDATE_CLI_VERSION: v0.57.0 | ||
|
||
jobs: | ||
bump-helm-dependencies: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
|
||
- uses: >- | ||
Alfresco/alfresco-build-tools/.github/actions/[email protected] | ||
- name: Login to quay.io | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: quay.io | ||
username: ${{ secrets.QUAY_USERNAME }} | ||
password: ${{ secrets.QUAY_PASSWORD }} | ||
|
||
- name: Install Updatecli | ||
uses: updatecli/updatecli-action@v2 | ||
with: | ||
version: v0.54.0 | ||
version: ${{ env.UPDATE_CLI_VERSION }} | ||
|
||
- run: updatecli apply --experimental | ||
env: | ||
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}} | ||
|
||
- name: Git Auto Commit | ||
uses: stefanzweifel/[email protected] | ||
with: | ||
|
@@ -62,7 +65,7 @@ jobs: | |
- name: Install Updatecli | ||
uses: updatecli/updatecli-action@v2 | ||
with: | ||
version: v0.54.0 | ||
version: ${{ env.UPDATE_CLI_VERSION }} | ||
|
||
- name: Checkout updatecli configs | ||
uses: actions/checkout@v3 | ||
|
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