site/.github/workflows/main.yml

28 lines
577 B
YAML
Raw Normal View History

2020-06-25 11:49:12 +03:00
name: deploy
on:
push:
branches:
2020-06-25 11:49:12 +03:00
- master
jobs:
build:
2020-06-25 11:49:12 +03:00
name: build and deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: install dependencies
run: npm install
- name: build
run: node_modules/gatsby/dist/bin/gatsby.js build
- name: copy file via ssh password
uses: appleboy/scp-action@master
with:
host: ${{ secrets.HOST }}
2020-06-25 17:37:05 +03:00
key: ${{ secrets.NPM_GITHUB_PRIVATE_KEY }}
source: "public/*"
target: "/home/webmaster/html/"
2020-06-25 11:49:12 +03:00
overwrite: true