Skip to content

Commit

Permalink
Fix Github action references to Quarkus 2.13
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo gonzalez granados committed Oct 10, 2022
1 parent e7835f9 commit 61f53ff
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/daily.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
check-latest: true
- name: Build Quarkus main
run: |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus && git checkout 2.13 && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations
git clone https://github.com/quarkusio/quarkus.git && git checkout 2.13 && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations
- name: Tar Maven Repo
shell: bash
run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
# password: ${{ secrets.CI_REGISTRY_PASSWORD }}
- name: Build Quarkus CLI
run: |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus/devtools/cli && git checkout 2.13 && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Prelocations
git clone https://github.com/quarkusio/quarkus.git && git checkout 2.13 && cd quarkus/devtools/cli && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Prelocations
- name: Install Quarkus CLI
run: |
cat <<EOF > ./quarkus-dev-cli
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ jobs:
check-latest: true
- name: Build Quarkus 2.13
run: |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus/devtools/cli && git checkout 2.13 && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Prelocations
git clone https://github.com/quarkusio/quarkus.git && git checkout 2.13 && cd quarkus && ./mvnw -B -s .github/mvn-settings.xml clean install -Dquickly -Prelocations
- name: Tar Maven Repo
shell: bash
run: tar -I 'pigz -9' -cf maven-repo.tgz -C ~ .m2/repository
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
run: tar -xzf maven-repo.tgz -C ~
- name: Build Quarkus CLI
run: |
git clone https://github.com/quarkusio/quarkus.git && cd quarkus/devtools/cli && git checkout 2.13 && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Prelocations
git clone https://github.com/quarkusio/quarkus.git && git checkout 2.13 && cd quarkus/devtools/cli && mvn -B -s ../../../.github/mvn-settings.xml clean install -Dquickly -Prelocations
- name: Install Quarkus CLI
run: |
cat <<EOF > ./quarkus-dev-cli
Expand Down

0 comments on commit 61f53ff

Please sign in to comment.