From 0443912ed73df2ee8596160daba017daab1c8ca9 Mon Sep 17 00:00:00 2001 From: Dmitry Shibanov Date: Wed, 14 Apr 2021 11:33:57 +0300 Subject: [PATCH] Fix typo in documentation "jdkfile" (#167) --- docs/advanced-usage.md | 2 +- docs/switching-to-v2.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced-usage.md b/docs/advanced-usage.md index 4419416..e6c884f 100644 --- a/docs/advanced-usage.md +++ b/docs/advanced-usage.md @@ -75,7 +75,7 @@ steps: wget -O $RUNNER_TEMP/java_package.tar.gz $download_url - uses: actions/setup-java@v2 with: - distribution: 'jdkFile' + distribution: 'jdkfile' jdkFile: ${{ runner.temp }}/java_package.tar.gz java-version: '11.0.0' architecture: x64 diff --git a/docs/switching-to-v2.md b/docs/switching-to-v2.md index 0d5ba21..a07e1c8 100644 --- a/docs/switching-to-v2.md +++ b/docs/switching-to-v2.md @@ -16,7 +16,7 @@ steps: **General recommendation** — configure CI with the same distribution that is used on your local dev machine. ## Installing custom Java distribution from local file -Since the `distribution` input is required in V2, you should specify it using `jdkFile` to continue installing Java from a local file on the runner +Since the `distribution` input is required in V2, you should specify it using `jdkfile` to continue installing Java from a local file on the runner ```yaml steps: - run: |