diff --git a/.github/workflows/rebuild-sources.yml b/.github/workflows/rebuild-sources.yml index 11f87148..1e7575cf 100644 --- a/.github/workflows/rebuild-sources.yml +++ b/.github/workflows/rebuild-sources.yml @@ -39,7 +39,7 @@ jobs: set -e set -x - ssh-keyscan -H ${{ secrets.KAMATERA_HOSTNAME2 }} >> ~/.ssh/known_hosts + ssh-keyscan -H 207.126.167.82 >> ~/.ssh/known_hosts mkdir -p "${{ steps.init.outputs.PKG_BUILD_DIR }}" rsync \ -rlptDvzh \ @@ -47,7 +47,7 @@ jobs: --include="*.debian.tar.xz" \ --exclude="*/*/*_*/" \ --exclude="*/*/*/*" \ - root@${{ secrets.KAMATERA_HOSTNAME2 }}:/opt/archives/repos-merged/ "${{ steps.init.outputs.PKG_BUILD_DIR }}" + root@207.126.167.82:/opt/archives/repos-merged/ "${{ steps.init.outputs.PKG_BUILD_DIR }}" - name: Build run: | @@ -60,4 +60,4 @@ jobs: set -e set -x - for i in 1 2 3 4 5; do echo "Attempt $i" && rsync -avzh ${{ steps.init.outputs.PKG_BUILD_DIR }}/ root@${{ secrets.KAMATERA_HOSTNAME2 }}:/opt/archives/repos-merged/ && break || sleep 5; done + for i in 1 2 3 4 5; do echo "Attempt $i" && rsync -avzh ${{ steps.init.outputs.PKG_BUILD_DIR }}/ root@207.126.167.82:/opt/archives/repos-merged/ && break || sleep 5; done