fixup values #121
Workflow file for this run
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
--- | |
name: Bump component versions | |
on: | |
push: | |
paths: | |
- .github/workflows/bumpVersions.yml | |
- updatecli-matrix-targets.yaml | |
- helm/alfresco-content-services/*_values.yaml | |
- helm/alfresco-content-services/values.yaml | |
workflow_dispatch: | |
jobs: | |
updatecli: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ secrets.BOT_GITHUB_TOKEN }} | |
- name: Install Updatecli | |
uses: updatecli/updatecli-action@v2 | |
with: | |
version: v0.54.0 | |
- name: Checkout updatecli configs | |
uses: actions/checkout@v3 | |
with: | |
repository: alfresco/alfresco-updatecli | |
ref: master | |
path: alfresco-updatecli | |
- name: Preprocess values file appending existing keys only | |
shell: bash | |
run: | | |
yq '. *? load("alfresco-updatecli/deployments/values/supported-matrix.yaml") | | |
explode(.)' updatecli-matrix-targets.yaml | | |
tee ./merged.yaml | |
- name: updatecli apply | |
# path to values file must be relative https://github.com/updatecli/updatecli/issues/1253 | |
run: updatecli apply -c alfresco-updatecli/deployments/uber-manifest.tpl -v ./merged.yaml | |
env: | |
QUAY_USERNAME: ${{ secrets.QUAY_USERNAME }} | |
QUAY_PASSWORD: ${{ secrets.QUAY_PASSWORD }} | |
UPDATECLI_GITHUB_TOKEN: ${{ secrets.BOT_GITHUB_TOKEN }} | |
- name: Git Auto Commit | |
uses: stefanzweifel/[email protected] | |
if: github.event_name == 'workflow_dispatch' | |
with: | |
commit_message: | | |
🛠 Updatecli pipeline acs bump | |
branch: updatecli-bump-acs | |
create_branch: true | |
push_options: '--force' |