Skip to content

Merge pull request #3 from canwdev/dev-kvm #15

Merge pull request #3 from canwdev/dev-kvm

Merge pull request #3 from canwdev/dev-kvm #15

Workflow file for this run

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions
name: Auto Deploy
#on:
# push:
# branches: [ "master" ]
# pull_request:
# branches: [ "master" ]
on:
push:
tags:
- 'v*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
- name: Build
run: yarn install && yarn build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: dist