Merge pull request #983 from IET-NITK/ayush4345-patch-1 #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Deploy | |
on: | |
push: | |
branches: | |
- daddy | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out code | |
uses: actions/checkout@v2 | |
- name: Set up Node.js | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 18 | |
- name: install pnpm | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm i | |
- name: Build the Next.js app | |
run: pnpm run static | |
- name: Deploy to mbsa branch | |
run: | | |
git config --global user.email "mbsaiaditya@gmail.com" | |
git config --global user.name "MBSA-INFINITY" | |
git checkout --orphan mbsa | |
ls | |
rm -rf node_modules | |
git add -f out | |
cp -r out/. . | |
git add . | |
git commit -m "Deploy to mbsa branch" | |
git push --force origin mbsa | |