Skip to content

Enhance deployment workflow by installing Trunk and TailwindCSS #2

Enhance deployment workflow by installing Trunk and TailwindCSS

Enhance deployment workflow by installing Trunk and TailwindCSS #2

Workflow file for this run

name: "Deploy"
on:
push:
jobs:
formatting:
name: deploy
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Ensure rustfmt is installed and setup problem matcher
- uses: actions-rust-lang/setup-rust-toolchain@v1
with:
target: wasm32-unknown-unknown
- name: Install Trunk
run: cargo install trunk
- uses: actions/setup-node@v4
- name: Install TailwindCSS
run: npm install -g tailwindcss
- name: Build Project
run: trunk build --release=true