Skip to content

Commit

Permalink
Move out checkout action from shared flow
Browse files Browse the repository at this point in the history
  • Loading branch information
axmetishe committed Feb 11, 2024
1 parent b42fc05 commit b93106e
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 0 additions & 3 deletions .github/actions/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,6 @@ runs:
echo SELECTED_JAVA_VERSION=21 >> "${GITHUB_ENV}"
esac
- name: Checkout
uses: actions/checkout@v3

- name: Setup Java
uses: actions/setup-java@v4
with:
Expand Down
9 changes: 9 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,23 @@ jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: ./.github/actions/build.yaml

build-windows:
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: ./.github/actions/build.yaml

build-macos:
runs-on: macos-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- uses: ./.github/actions/build.yaml

0 comments on commit b93106e

Please sign in to comment.