mirror of
https://github.com/ArthurDanjou/arthurdanjou.fr.git
synced 2026-01-14 12:14:34 +01:00
25 lines
381 B
YAML
25 lines
381 B
YAML
name: Deploy, Install, Build & Run
|
|
|
|
on: [push]
|
|
|
|
jobs:
|
|
build:
|
|
|
|
runs-on: self-hosted
|
|
|
|
steps:
|
|
- uses: actions/checkout@v1
|
|
|
|
- name: Deploy
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
path: /home/arthur/website
|
|
|
|
- name: Install
|
|
run: yarn
|
|
|
|
- name: Build
|
|
run: yarn build-all
|
|
|
|
- name: Run
|
|
run: yarn start |