Skip to content

Commit

Permalink
Fix for ecosystem-ci (#113)
Browse files Browse the repository at this point in the history
  • Loading branch information
gastaldi authored Dec 5, 2022
1 parent eb627fa commit 122fcd2
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/quarkus-snapshot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,7 @@ env:
ECOSYSTEM_CI_REPO: quarkusio/quarkus-ecosystem-ci
ECOSYSTEM_CI_REPO_FILE: context.yaml
JAVA_VERSION: 17
# Use the branch below to run the ecosystem
ALTERNATIVE: "1.x"

#########################
# Repo specific setting #
#########################
Expand All @@ -28,21 +27,23 @@ jobs:

steps:
- name: Install yq
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y
uses: dcarbone/install[email protected]

- name: Set up Java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: ${{ env.JAVA_VERSION }}

- name: Checkout repo
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: current-repo
# Build against the 1.x branch. Remove it when the main branch is compatible with the Quarkus main branch
ref: 1.x

- name: Checkout Ecosystem
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
path: ecosystem-ci
Expand Down

0 comments on commit 122fcd2

Please sign in to comment.