ci/cd - fix scp command in linux build wf

This commit is contained in:
florian 2023-05-07 19:32:38 +02:00
parent 73acbe0852
commit dc1cb6a6fa
No known key found for this signature in database
GPG Key ID: 3D80806F12602A7C
1 changed files with 1 additions and 1 deletions

View File

@ -122,7 +122,7 @@ jobs:
if: startsWith(env.ARCH, 'arm') == true
run: |
docker save local/bunkerweb-${{ inputs.LINUX }}:latest | ssh -C root@arm docker load
scp ./src/linux/package.sh root@arm:/opt/package.sh
scp ./src/linux/package.sh root@arm:/opt
ssh root@arm chmod +x /opt/package.sh
ssh root@arm /opt/packages.sh ${{ inputs.LINUX }} ${{ env.LARCH }}
scp -r root@arm:/root/package-${{ inputs.LINUX }} ./package-${{ inputs.LINUX }}