diff --git a/.github/workflows/download-artifacts.yml b/.github/workflows/download-artifacts.yml index cfa231a..d99e111 100644 --- a/.github/workflows/download-artifacts.yml +++ b/.github/workflows/download-artifacts.yml @@ -18,20 +18,21 @@ jobs: # The type of runner that the job will run on runs-on: ${{ matrix.os }} strategy: + fail-fast: false matrix: - os: [macos-latest, ubuntu-18.04] + os: [macos-latest, ubuntu-latest] + include: + - os: macos-latest + java: '8' + javadist: 'temurin' + - os: ubuntu-latest + java: '8' # Steps represent a sequence of tasks that will be executed as part of the job steps: # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it - uses: actions/checkout@v2 - - name: Set up JDK 8 - uses: actions/setup-java@v2 - with: - java-version: '8' - distribution: 'adopt' - - name: Download artifacts from dist.apache.org run: | wget -r -np -nH --cut-dirs=5 -R index.html https://dist.apache.org/repos/dist/dev/systemds/${RELEASE_TAG}/ -e robots=off