Skip to content

Update NickelSeries to pgaskin/kobo-mods@0deffca74bb3c82cc260dcc373eb… #46

Update NickelSeries to pgaskin/kobo-mods@0deffca74bb3c82cc260dcc373eb…

Update NickelSeries to pgaskin/kobo-mods@0deffca74bb3c82cc260dcc373eb… #46

Workflow file for this run

name: website
on: push
jobs:
build:
runs-on: ubuntu-20.04
container: docker://node:16-buster
env:
NODE_ENV: production
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Build WebAssembly
uses: docker://golang:1.17-alpine
with:
entrypoint: /usr/local/go/bin/go
args: generate ./...
- name: Build
run: |
yarn install --frozen-lockfile --production=false
yarn run build
- name: Commit
run: |
git config user.name "GitHub Actions"
git config user.email "41898282+github-actions[bot]@users.noreply.github.com"
git checkout --orphan gh-pages-dist
git reset
git clean -fdxe/dist
mv -v dist/public/* ./
rm -rf dist
ls -lahRI.git
touch .nojekyll
git add .
git commit -m "Build ${{github.sha}}"
- name: Deploy
if: github.ref == 'refs/heads/gh-pages'
run: |
git push -u origin gh-pages-dist --force