Skip to content

[chore] build(deps-dev): bump postcss from 8.4.28 to 8.4.31 in /website #11

[chore] build(deps-dev): bump postcss from 8.4.28 to 8.4.31 in /website

[chore] build(deps-dev): bump postcss from 8.4.28 to 8.4.31 in /website #11

Workflow file for this run

name: Website
on:
push:
branches:
- testnet3
jobs:
deploy:
name: SDK Website
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
# with:
# persist-credentials: false
- name: Install Rust
uses: actions-rs/toolchain@v1
with:
profile: minimal
toolchain: nightly-2023-05-24
override: true
components: rustfmt, rust-src
- uses: jetli/[email protected]
with:
# Optional version of wasm-pack to install(eg. 'v0.9.1', 'latest')
version: 'latest'
- uses: actions/cache@v2
with:
path: |
~/.cargo/registry
~/.cargo/git
target
key: ${{ runner.os }}-cargo-website-${{ hashFiles('**/Cargo.lock') }}
- name: Install and Build
run: |
rustup component add rust-src
cd website
npm install
npm run build
env:
CI: ""
- name: Deploy
id: modified
uses: JamesIves/github-pages-deploy-action@v4
with:
token: ${{ secrets.GITHUB_TOKEN }}
branch: gh-pages
folder: website/dist
clean-exclude: '["dev"]'
- name: Check step output
run: |
[[ \
${{steps.modified.outputs.deployment-status}} = skipped || \
${{steps.modified.outputs.deployment-status}} = success \
]]