diff --git a/.github/workflows/gh-pages-deploy.yml b/.github/workflows/gh-pages-deploy.yml
index b9c28c7..9e859e0 100644
--- a/.github/workflows/gh-pages-deploy.yml
+++ b/.github/workflows/gh-pages-deploy.yml
@@ -1,4 +1,4 @@
-name: Release to Github Pages
+name: Test and release web
on:
push:
@@ -6,81 +6,50 @@ on:
workflow_dispatch:
permissions:
- contents: write # for committing to gh-pages branch.
- pages: write
- id-token: write
-
-# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
-# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
-concurrency:
- group: "pages"
- cancel-in-progress: false
+ contents: write # for committing to gh-pages branch.
jobs:
- Github-Pages-Release:
-
+ verify:
timeout-minutes: 10
-
- environment:
- name: github-pages
- url: ${{ steps.deployment.outputs.page_url }}
-
runs-on: ubuntu-latest
-
steps:
- - uses: actions/checkout@v4 # repo checkout
-
- # Install Rust Nightly Toolchain, with Clippy & Rustfmt
- - name: Install nightly Rust
- uses: dtolnay/rust-toolchain@stable
+ - uses: actions/checkout@v3
+ - uses: dtolnay/rust-toolchain@nightly
with:
components: clippy, rustfmt
-
- - name: Add WASM target
- run: rustup target add wasm32-unknown-unknown
-
- - name: lint
- run: cargo clippy & cargo fmt
-
-
- # If using tailwind...
- # - name: Download and install tailwindcss binary
- # run: npm install -D tailwindcss && npx tailwindcss -i -o