Port not being set for some reason? #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy to Vulcan | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
deploy: | |
name: Deploy to Vulcan | |
runs-on: ubuntu-latest | |
environment: production | |
steps: | |
- name: Setup SSH | |
run: | | |
umask 077 | |
cat << EOF > ~/hackerring-deploy | |
${{ secrets.SSH_PRIVATE_KEY }} | |
EOF | |
- name: Deploy with SSH | |
run: | | |
ssh -o StrictHostKeyChecking=no -o IdentitiesOnly=yes -o PubkeyAuthentication=yes -o IdentityFile=~/hackerring-deploy -o Port=4225 caf5@vulcan.moe |