Skip to content

[chore] update deps #22

[chore] update deps

[chore] update deps #22

Workflow file for this run

name: Deploy
defaults:
run:
working-directory: ./client
on:
push:
branches:
- master
paths:
- client/**
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Node
uses: actions/setup-node@v1
with:
node-version: 17
- name: Install dependencies
uses: bahmutov/npm-install@v1
with:
working-directory: client
- name: Build
run: npm run build
- name: Upload build
uses: actions/upload-artifact@v2
with:
name: production-files
path: ./client/dist
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/master'
steps:
- name: Download artifact
uses: actions/download-artifact@v2
with:
name: production-files
path: ./client/dist
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./client/dist