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 7284192
Show file tree
Hide file tree
Showing 4 changed files with 57 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="npm run build"
publish=".next"

[[plugins]]
package="@netlify/plugin-nextjs"
4 changes: 4 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,9 @@
"swiper": "^9.3.2",
"tailwindcss": "^3.3.5",
"typescript": "^5.2.2"
},
"devDependencies": {
"@netlify/plugin-nextjs": "^5.6.0",
"netlify-cli": "^17.33.4"
}
}

0 comments on commit 7284192

Please sign in to comment.