diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d791bc9..4df28eb 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -12,12 +12,18 @@ jobs: - name: Checkout 🛎️ uses: actions/checkout@v4 - - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. + - name: Install and Build run: | npm ci npx tsc + mkdir dist + mv *.js dist/ + mv *.html dist/ + - name: Upload GitHub Pages artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v3 + with: + path: dist # Deploy job deploy: