mirror of
https://github.com/gradle/actions.git
synced 2025-12-08 17:15:46 +08:00
24 lines
750 B
YAML
24 lines
750 B
YAML
name: 'Initialize integ-test'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Java
|
|
uses: actions/setup-java@8df1039502a15bceb9433410b1a100fbe190c53b # v4.5.0
|
|
with:
|
|
distribution: 'temurin'
|
|
java-version: 11
|
|
|
|
- name: Configure environment
|
|
shell: bash
|
|
run: |
|
|
echo "ALLOWED_GRADLE_WRAPPER_CHECKSUMS=e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855" >> "$GITHUB_ENV"
|
|
|
|
# Downloads a 'dist' directory artifact that was uploaded in an earlier 'build-dist' step
|
|
- name: Download dist
|
|
if: ${{ env.SKIP_DIST != 'true' && !env.ACT }}
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
|
with:
|
|
name: dist
|
|
path: dist/
|