From 2f2539d00bf2f2a01e30afa1d6de32d66c5e0b00 Mon Sep 17 00:00:00 2001 From: BlackWolfNews Date: Sun, 13 Apr 2025 18:12:16 -0600 Subject: [PATCH] Add Vite CI/CD workflow --- .github/workflows/deploy.yml | 17 +++++++++++++++++ 1 file changed, 17 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 000000000..b3fc8d078 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,17 @@ +name: Vite CI/CD +on: [push] +jobs: + build: + runs-on: ubuntu-latest + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-node@v4 + with: + node-version: 18 + - run: yarn install + - run: yarn build + - name: Archive Artifacts + uses: actions/upload-artifact@v3 + with: + name: dist + path: dist