From 96a34f18e9b794ebc3238e7a5daccad6092681de Mon Sep 17 00:00:00 2001 From: Timerix22 <87668556+Timerix22@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:26:09 +0600 Subject: [PATCH 1/4] Update build_all.yml --- .github/workflows/build_all.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index def0487..7d1fc09 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -54,7 +54,11 @@ jobs: - name: Download artifacts uses: actions/download-artifact@v3 with: - name: assets + name: minecraft-launcher-client + - uses: actions/download-artifact@v3 + with: + name: minecraft-launcher-server + - name: Upload files env: SSHPASS: ${{secrets.SSH_PASSWORD}} From a4cdae2f5ce343929b61eca9e4d29f840cd00a5b Mon Sep 17 00:00:00 2001 From: Timerix22 <87668556+Timerix22@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:32:29 +0600 Subject: [PATCH 2/4] Update build_all.yml --- .github/workflows/build_all.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 7d1fc09..f58823d 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -59,6 +59,9 @@ jobs: with: name: minecraft-launcher-server + - name: Prepare ssh + run: echo "${{secrets.SSH_FINGERPRINT}}" >> ~/.ssh/known_hosts + - name: Upload files env: SSHPASS: ${{secrets.SSH_PASSWORD}} From c12dd56fc02457ec473d3be66d401e6a49a24f11 Mon Sep 17 00:00:00 2001 From: Timerix22 <87668556+Timerix22@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:36:28 +0600 Subject: [PATCH 3/4] Update build_all.yml --- .github/workflows/build_all.yml | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index f58823d..2dcea5b 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -60,7 +60,11 @@ jobs: name: minecraft-launcher-server - name: Prepare ssh - run: echo "${{secrets.SSH_FINGERPRINT}}" >> ~/.ssh/known_hosts + env: + SSH_FINGERPRINT: ${{secrets.SSH_FINGERPRINT}} + run: | + echo "$SSH_FINGERPRINT" >> ~/.ssh/known_hosts + shell: bash - name: Upload files env: From 454c070eeab5174f85ac5420d43f2198ecf5ef8d Mon Sep 17 00:00:00 2001 From: Timerix22 <87668556+Timerix22@users.noreply.github.com> Date: Sat, 6 Jan 2024 21:42:55 +0600 Subject: [PATCH 4/4] Update build_all.yml --- .github/workflows/build_all.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/build_all.yml b/.github/workflows/build_all.yml index 2dcea5b..91cf12f 100644 --- a/.github/workflows/build_all.yml +++ b/.github/workflows/build_all.yml @@ -63,6 +63,7 @@ jobs: env: SSH_FINGERPRINT: ${{secrets.SSH_FINGERPRINT}} run: | + mkdir -p ~/.ssh echo "$SSH_FINGERPRINT" >> ~/.ssh/known_hosts shell: bash