Skip to content

Commit

Permalink
Fix Github Actions
Browse files Browse the repository at this point in the history
  • Loading branch information
wyatt-herkamp committed Jan 7, 2024
1 parent 8996e69 commit 7af5ac9
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/example-site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 7af5ac9

Please sign in to comment.