Skip to content

Update CV

Update CV #16

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v1
- name: Remove .git folder before push
run: rm -rf .git
- name: Copy files to prod server
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
port: ${{ secrets.PORT }}
username: ${{ secrets.USER }}
key: ${{ secrets.SSH_KEY }}
source: "."
target: ${{ secrets.PATH }}
overwrite: true