Skip to content

Commit

Permalink
Deploy Website
Browse files Browse the repository at this point in the history
  • Loading branch information
rubuy-74 committed Jul 30, 2024
1 parent f25e397 commit 53efb51
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Deploy website

on: [push]

jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- name: Repository Checkout
uses: actions/checkout@v4

- name: Setup NodeJS
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm

- name: Install Netlify
run: npm install [email protected] -g

- name: Install dependencies
run: npm ci

- name: Build Project
run: npm run build

- name: Deploy to Netlify
id: netlify_deploy
run: |
netlify deploy \
--dir .next \
--site ${{ secrets.NETLIFY_SITE_ID }} \
--auth ${{ secrets.NETLIFY_API_TOKEN }}
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,4 @@
node_modulesnode_modules/

# Local Netlify folder
.netlify

0 comments on commit 53efb51

Please sign in to comment.