Skip to content

Commit

Permalink
ci: attempt 05
Browse files Browse the repository at this point in the history
  • Loading branch information
colthreepv committed Jun 18, 2024
1 parent 8bdea27 commit 4c665a1
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,10 @@ jobs:

steps:
- name: Checkout repo
uses: actions/checkout@v3
with:
node-version: '20'
uses: actions/checkout@v4

- name: Setup Node
uses: actions/setup-node@v3
uses: actions/setup-node@v4
with:
node-version: '20'

Expand All @@ -37,11 +35,10 @@ jobs:
run: pnpm run build

- name: Upload production-ready build files
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: production-files
path: ./dist
node-version: '20'

# from github tutorial
deploy:
Expand All @@ -60,6 +57,7 @@ jobs:
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
name: production-files
path: ./dist
- name: Deploy to GitHub Pages
id: deployment
Expand Down

0 comments on commit 4c665a1

Please sign in to comment.