mirror of
https://github.com/gradle/actions.git
synced 2025-08-18 14:51:28 +08:00
18 lines
407 B
YAML
18 lines
407 B
YAML
name: 'Initialize integ-test'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v4
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
|
|
# Downloads a 'dist' directory artifact that was uploaded in an earlier 'build-dist' step
|
|
- name: Download dist
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: dist
|
|
path: dist/
|