Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 9 additions & 9 deletions .github/workflows/publish-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Copy link

Copilot AI Nov 30, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The script path references ss14ManifestGenerator but is located in the engineManifestGenerator directory. This naming inconsistency suggests the executable name may not have been updated during the refactoring from "robust"/"ss14" to "engine" naming. Consider renaming the executable to engineManifestGenerator or verifying the correct executable name.

Suggested change
script: /home/${{ vars.ENGINE_BUILDS_PUSH_USER }}/engineManifestGenerator/bin/Release/net7.0/ss14ManifestGenerator ${{ steps.parse_version.outputs.version }}
script: /home/${{ vars.ENGINE_BUILDS_PUSH_USER }}/engineManifestGenerator/bin/Release/net7.0/engineManifestGenerator ${{ steps.parse_version.outputs.version }}

Copilot uses AI. Check for mistakes.
Loading