diff --git a/.github/workflows/publish-client.yml b/.github/workflows/publish-client.yml index 6cac40e35..cf3518cf3 100644 --- a/.github/workflows/publish-client.yml +++ b/.github/workflows/publish-client.yml @@ -33,20 +33,20 @@ jobs: mkdir "release/${{ steps.parse_version.outputs.version }}" mv release/*.zip "release/${{ steps.parse_version.outputs.version }}" - - name: Upload files to Suns + - name: Upload files to server uses: appleboy/scp-action@master with: - host: suns.spacestation14.com - username: robust-build-push - key: ${{ secrets.CENTCOMM_ROBUST_BUILDS_PUSH_KEY }} + host: ${{ vars.ENGINE_BUILDS_HOST }} + username: ${{ vars.ENGINE_BUILDS_PUSH_USER }} + key: ${{ secrets.ENGINE_BUILDS_PUSH_KEY }} source: "release/${{ steps.parse_version.outputs.version }}" - target: "/var/lib/robust-builds/builds/" + target: "/var/lib/engine-builds/builds/" strip_components: 1 - name: Update manifest JSON uses: appleboy/ssh-action@master with: - host: suns.spacestation14.com - username: robust-build-push - key: ${{ secrets.CENTCOMM_ROBUST_BUILDS_PUSH_KEY }} - script: /home/robust-build-push/push.ps1 ${{ steps.parse_version.outputs.version }} + host: ${{ vars.ENGINE_BUILDS_HOST }} + username: ${{ vars.ENGINE_BUILDS_PUSH_USER }} + key: ${{ secrets.ENGINE_BUILDS_PUSH_KEY }} + script: /home/${{ vars.ENGINE_BUILDS_PUSH_USER }}/engineManifestGenerator/bin/Release/net7.0/ss14ManifestGenerator ${{ steps.parse_version.outputs.version }}