Skip to content

Merge pull request #15 from 4geru/move-css-to-style-directory #12

Merge pull request #15 from 4geru/move-css-to-style-directory

Merge pull request #15 from 4geru/move-css-to-style-directory #12

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: 16
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install Dependencies
run: yarn
- name: Lint && Format
run: yarn lint && yarn format
- name: Build
run: yarn build && yarn export
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: out
user_name: 'github-actions[bot]'
user_email: 'github-actions[bot]@users.noreply.github.com'