Skip to content

Commit

Permalink
Update deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LarsFlem authored Oct 21, 2024
1 parent d4dc9b0 commit 079b8e1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,20 +3,20 @@ name: Deploy to GitHub Pages
on:
push:
branches:
- main # or the branch you're working on
- main

jobs:
deploy:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v3 # Updated to v3
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3 # Updated to v3
uses: actions/setup-node@v3
with:
node-version: '20' # You can also specify the exact version
node-version: '20' # Specify Node.js version 20 explicitly

- name: Install dependencies
run: npm install
Expand Down

0 comments on commit 079b8e1

Please sign in to comment.