aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/build.yml
diff options
context:
space:
mode:
authortxtsd <thexerothermicsclerodermoid@gmail.com>2022-02-12 03:15:11 -0800
committerGitHub <noreply@github.com>2022-02-12 03:15:11 -0800
commit2f6973e08b661f3a21724c9dda2977c55d5a3d45 (patch)
tree4a01608e4f774231408db4079f60fa86edc7a2e5 /.github/workflows/build.yml
parent7d912726d0038d1e3308606f6bdfba84b19bfb00 (diff)
parentfb14796ed7c98a120f3db3e940e4a5bfe0965279 (diff)
downloadPrismLauncher-2f6973e08b661f3a21724c9dda2977c55d5a3d45.tar.gz
PrismLauncher-2f6973e08b661f3a21724c9dda2977c55d5a3d45.tar.bz2
PrismLauncher-2f6973e08b661f3a21724c9dda2977c55d5a3d45.zip
Merge pull request #157 from txtsd/actions_fix
Adjust OpenSSL step
Diffstat (limited to '.github/workflows/build.yml')
-rw-r--r--.github/workflows/build.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index c695e0bf..d2ccc59e 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -43,6 +43,11 @@ jobs:
run: |
choco install strawberryperl -y --force --x86
+ - name: Checkout
+ uses: actions/checkout@v2
+ with:
+ submodules: 'true'
+
# We need to do this here because it inexplicably fails if we split the step
- name: Download and install OpenSSL libs on Windows
if: runner.os == 'Windows'
@@ -54,11 +59,6 @@ jobs:
copy "${{ github.workspace }}\Qt\Tools\OpenSSL\Win_x86\bin\libssl-1_1.dll" "${{ github.workspace }}\${{ env.INSTALL_DIR }}\"
copy "${{ github.workspace }}\Qt\Tools\OpenSSL\Win_x86\bin\libcrypto-1_1.dll" "${{ github.workspace }}\${{ env.INSTALL_DIR }}\"
- - name: Checkout
- uses: actions/checkout@v2
- with:
- submodules: 'true'
-
- name: Install OpenJDK
uses: AdoptOpenJDK/install-jdk@v1
with: