From 7af5ac9ef8e45cd2656aa90f0a761c2251fab901 Mon Sep 17 00:00:00 2001 From: Wyatt Herkamp Date: Sun, 7 Jan 2024 11:34:28 -0500 Subject: [PATCH] Fix Github Actions --- .github/workflows/example-site.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/example-site.yml b/.github/workflows/example-site.yml index c5df891..782a16b 100644 --- a/.github/workflows/example-site.yml +++ b/.github/workflows/example-site.yml @@ -21,19 +21,22 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 20.x uses: actions/setup-node@v3 with: - node-version: '20.x' + node-version: "20.x" + - uses: denoland/setup-deno@v1 + with: + deno-version: v1.x - name: Build Main Library - run: npm install && npm run build + run: npm install && npm install --prefix buildTools && npm run build - name: Build Website working-directory: example run: npm install && npm run build - name: Upload artifact uses: actions/upload-pages-artifact@v3 with: - path: "example/dist/" + path: "example/dist/" # Deployment job deploy: environment: