Skip to content

Commit

Permalink
👷 Update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
Edoardo Gruppi committed Dec 24, 2023
1 parent 7177806 commit 74fbcf8
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Simple workflow for deploying static content to GitHub Pages
name: Deploy to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
Expand Down Expand Up @@ -29,11 +29,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
cache: "npm"
- name: Install dependencies
run: npm install
Expand All @@ -42,10 +42,10 @@ jobs:
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
uses: actions/upload-pages-artifact@v2
with:
# Upload dist repository
path: "./dist"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1
uses: actions/deploy-pages@v2

0 comments on commit 74fbcf8

Please sign in to comment.