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 3e67b13
Show file tree
Hide file tree
Showing 5 changed files with 15,847 additions and 1 deletion.
43 changes: 43 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
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: Install Netlify CLI
run: npm install netlify-cli -g

- name: Build Project
id: build-netlify
run: |
netlify build
env:
NETLIFY_AUTH_TOKEN: ${{ secrets.NETLIFY_API_TOKEN }}
NETLIFY_SITE_ID: ${{ secrets.NETLIFY_SITE_ID }}


- 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
6 changes: 6 additions & 0 deletions netlify.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
[build]
command="next build"
publish=".next"

[[plugins]]
package="@netlify/plugin-nextjs"
Loading

0 comments on commit 3e67b13

Please sign in to comment.