Skip to content

reflect

reflect #14

Workflow file for this run

name: deployment
"on":
push:
branches:
- master
pull_request:
branches: []
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Deploy to server
env:
SERVER_KEY: ${{ secrets.SERVER_KEY }}
run: echo "$SERVER_KEY" > secret && chmod 600 secret && ssh -o StrictHostKeyChecking=no
-i secret [email protected] -p 8357 'ls -la'