Skip to content

Upgrade to PureScript 0.15.13 and Elmish 0.11.1 #176

Upgrade to PureScript 0.15.13 and Elmish 0.11.1

Upgrade to PureScript 0.15.13 and Elmish 0.11.1 #176

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- main
pull_request:
jobs:
deploy:
runs-on: ubuntu-latest
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: |
examples/.spago
examples/output
examples/node_modules
key: build-atrifacts-v2-${{ hashFiles('package-lock.json', 'spago.dhall', 'packages.dhall', 'examples/package-lock.json', 'examples/spago.dhall', 'examples/packages.dhall') }}
- uses: actions/setup-node@v1
with:
node-version: 16.15.1
- run: cd examples && npm i
- run: cd examples && npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./examples/public