forked from cerc-io/cosmos-explorer
25 lines
402 B
YAML
25 lines
402 B
YAML
|
|
name: Ping Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [ v2 ]
|
|
pull_request:
|
|
branches: [ v2 ]
|
|
|
|
jobs:
|
|
deploy:
|
|
name: Ping deploy
|
|
runs-on: self-hosted
|
|
steps:
|
|
- name: Git Checkout Latest
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Install
|
|
run: yarn install
|
|
|
|
- name: Build
|
|
run: yarn run vue-cli-service build
|
|
|
|
- name: Deploy
|
|
run: cp -rf ./dist/* /var/www/html/ |