scp-action
scp-action copied to clipboard
dial tcp: lookup on ***: no such host
Hi there,
scp-action keeps failing randomly. It is able to upload the files, create folders, etc. But when it's finished, it throws this error and removes all uploaded files again.
Any idea why?
https://github.com/refinedmods/website/runs/768264891?check_suite_focus=true
post your YAML config?
deploy:
runs-on: ubuntu-latest
needs: build-website
steps:
- uses: actions/download-artifact@v2
with:
name: output
- uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
username: ${{ secrets.USERNAME }}
password: ${{ secrets.PASSWORD }}
port: ${{ secrets.PORT }}
source: "."
target: "/home/minecraft/refinedmods/public"
rm: true
strip_components: 1
Can you help to try it again? I see the wrong host in your log:
168.63.129.16:53
same error - error message: dial tcp: lookup ***: no such host
I have the same problem, any updates?