Skip to content

Bump postcss from 8.4.24 to 8.4.32 in /www (#5) #18

Bump postcss from 8.4.24 to 8.4.32 in /www (#5)

Bump postcss from 8.4.24 to 8.4.32 in /www (#5) #18

Workflow file for this run

name: Deploy page
on:
push:
branches: [main]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Git checkout
uses: actions/checkout@v2
with:
fetch-depth: '0'
- name: Install
uses: jetli/wasm-pack-action@v0.3.0
with:
version: 'latest'
- name: Build
run: |
rustup default nightly
wasm-pack build --release
rm pkg/.gitignore
cd www
npm install
npm run build
- name: Deploy
uses: JamesIves/github-pages-deploy-action@releases/v3
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: www/dist/
SINGLE_COMMIT: true