Skip to content

Commit

Permalink
Add GitHub Actions workflow for deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
vadim-su committed Dec 11, 2024
1 parent 22f8b62 commit 15428c4
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
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:
components: trunk
target: wasm32-unknown-unknown

- uses: actions/setup-node@v4
- run: npm install -g tailwindcss

- name: Build Project
run: trunk build --release=true

0 comments on commit 15428c4

Please sign in to comment.