From fea5e306a184193dda2442184453749e2dffb1bf Mon Sep 17 00:00:00 2001 From: CyberL1 Date: Fri, 26 Apr 2024 17:20:09 +0200 Subject: [PATCH] chmod +x --- .github/workflows/deploy.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index a685d2e..c51b481 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -13,6 +13,7 @@ jobs: wget https://dot.net/v1/dotnet-install.sh -O dotnet-install.sh chmod +x dotnet-install.sh ./dotnet-install.sh + chmod +x /root/.dotnet/dotnet - name: Compile MyMcRealms run: /root/.dotnet/dotnet publish --runtime linux-arm64 - name: Install sshpass @@ -20,7 +21,7 @@ jobs: apt-get update apt-get install sshpass - name: Stop the realms server for the deployment - run: sshpass -p '${{ secrets.VPS_PASSWORD }}' ssh -o StrictHostKeyChecking=no -p 9476 root@ssh.surf "pm2 stop 0" + run: sshpass -p '${{ secrets.VPS_PASSWORD }}' ssh -o StrictHostKeyChecking=no -p 9476 root@ssh.surf "pm2 stop 0" - name: Deploy compiled binary and dll files to server run: sshpass -p '${{ secrets.VPS_PASSWORD }}' scp -o StrictHostKeyChecking=no -o UserKnownHostsFile=/dev/null -r -P 9476 MyMcRealms/bin/Release/net8.0/linux-arm64/publish/* root@ssh.surf:/root/MyMcRealms - name: Start the realms server again