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 1f0df8d
Show file tree
Hide file tree
Showing 4 changed files with 15,835 additions and 1 deletion.
37 changes: 37 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
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 dependencies
run: npm ci

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

- name: Build Project
run: npm run build

- name: Start Project
run: npx next start

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

# Local Netlify folder
.netlify
Loading

0 comments on commit 1f0df8d

Please sign in to comment.