fix: keep colors in p3 range #27
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 }} |