mirror of
https://hub.gitmirror.com/https://github.com/gradle/actions.git
synced 2025-11-02 02:50:02 +08:00
- Add 'allow-snapshot-wrappers' input parameter - Default 'validate-wrappers' to 'true' Fixes #12
24 lines
656 B
YAML
24 lines
656 B
YAML
name: 'Initialize integ-test'
|
|
|
|
runs:
|
|
using: "composite"
|
|
steps:
|
|
- name: Setup Java
|
|
uses: actions/setup-java@v4
|
|
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@v4
|
|
with:
|
|
name: dist
|
|
path: dist/
|