From 15428c48931ba4a25292ef114f7807e38ea99d3e Mon Sep 17 00:00:00 2001 From: Vadim Suharnikov Date: Wed, 11 Dec 2024 08:10:40 +0000 Subject: [PATCH] Add GitHub Actions workflow for deployment --- .github/workflows/deploy.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/deploy.yml diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 0000000..0630675 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -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