Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati committed Jan 1, 2024
1 parent 1e59e9d commit 221020b
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/validation-latest-versions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,13 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v3
- id: matrix
- name: Compute matrix
id: matrix
run: |
set -x -e -o pipefail
branches="development"
matrix=$(for branch in $branches; do \
git fetch --depth=1 origin $branch:$branch;
git show $branch:pom.xml | grep -E '<(vaadin\.(platform|flow)|vertx)\.version>' \
| sed -E 's/.*(platform|flow|vertx).*>(([0-9]+\.[0-9]+)\..*)<.*/"\1": "\2","\1Minor":"\3"/g' | paste -s -d',' \
| awk --assign BRANCH=$branch '{print "{\"branch\":\""BRANCH"\","$0"}"}'; \
Expand Down

0 comments on commit 221020b

Please sign in to comment.