Skip to content

Merge pull request #37 from Mariotek/fix/format #87

Merge pull request #37 from Mariotek/fix/format

Merge pull request #37 from Mariotek/fix/format #87

Workflow file for this run

name: Build and Deploy
on: [push]
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false
- name: Install 🎢
run: yarn install --force
- name: Build 🧩
run: yarn run deploy
env:
CI: true
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@3.6.2
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: docs
CLEAN: true # Automatically remove deleted files from the deploy branch