Skip to content

Commit

Permalink
Merge pull request quarkusio#28974 from gastaldi/feature_branch
Browse files Browse the repository at this point in the history
Quarkiverse: Support release from feature branches
  • Loading branch information
gastaldi authored Nov 3, 2022
2 parents 6ed8fc0 + 8db677c commit cc266ca
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ jobs:
run: git config --global core.autocrlf false
if: startsWith(matrix.os, 'windows')

- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 11
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,18 +30,18 @@ jobs:
run: sudo add-apt-repository ppa:rmescandon/yq && sudo apt update && sudo apt install yq -y

- 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

- name: Checkout Ecosystem
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
repository: ${{ env.ECOSYSTEM_CI_REPO }}
path: ecosystem-ci
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ jobs:
# Move the tag after inclusion of documentation adjustments
git tag -f ${{steps.metadata.outputs.current-version}}
fi
# Go back to main
git checkout main
# Go back to base branch
git checkout ${{github.base_ref}}
- name: Push changes to ${{github.base_ref}}
uses: ad-m/[email protected]
Expand Down

0 comments on commit cc266ca

Please sign in to comment.