Skip to content

Commit 0ada01a

Browse files
committed
support all acs versions
1 parent 8f7ed12 commit 0ada01a

File tree

5 files changed

+13
-6
lines changed

5 files changed

+13
-6
lines changed
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
updatecli_matrix_version: current
2+
ansible_version_file: vars/acs23.yml
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
updatecli_matrix_version: 7.3.N
2+
ansible_version_file: vars/acs73.yml
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
updatecli_matrix_version: 7.4.N
2+
ansible_version_file: vars/acs74.yml

.github/updatecli_maven_values.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
updatecli_matrix_version: current
2-
ansible_version_file: vars/acs23.yml
31
ansible_default_repository_name: private
42
ansible_default_group_id: org.alfresco
53
artifacts:

.github/workflows/bumpVersions.yml

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,13 @@ jobs:
4545

4646
- name: Updatecli apply
4747
shell: bash
48-
run: >-
49-
updatecli apply --config .github/updatecli_maven.tpl
50-
-v alfresco-updatecli/deployments/values/supported-matrix.yaml
51-
-v .github/updatecli_maven_values.yml
48+
run: |
49+
for version_file in .github/updatecli_maven_*_values.yml; do
50+
updatecli apply --config .github/updatecli_maven.tpl
51+
-v alfresco-updatecli/deployments/values/supported-matrix.yaml
52+
-v .github/updatecli_maven_values.yml
53+
-v $version_file
54+
done
5255
env:
5356
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }}
5457
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }}

0 commit comments

Comments
 (0)