Skip to content

fix: keep colors in p3 range #27

fix: keep colors in p3 range

fix: keep colors in p3 range #27

# Builds and deploys the app to Github Pages.
name: Deploy to Github Pages
on:
push:
branches: [ main ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Set up Node
uses: actions/setup-node@v1
- name: Install dependencies
run: yarn install
- name: Build app
run: yarn build
- name: Deploy to Github Pages
run: |
git remote set-url origin https://git:${GITHUB_TOKEN}@github.com/sandydoo/PolarClockElm.git
yarn gh-pages -d dist -u "github-actions-bot <[email protected]>"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}