Skip to content

Commit

Permalink
updates build-and-deploy.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
maddeezy committed Mar 4, 2024
1 parent 93fc279 commit ffd100e
Showing 1 changed file with 21 additions and 42 deletions.
63 changes: 21 additions & 42 deletions .github/workflows/build-and-deploy.yml
Original file line number Diff line number Diff line change
@@ -1,55 +1,34 @@
name: Build and Deploy Next.js App

on:
push:
pull_request:
branches:
- master
permissions:
contents: read
pages: write
id-token: write

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Update apt repos
run: sudo apt-get update
- name: Checkout Repository
uses: actions/checkout@v2

- name: Set the correct Node version using nvm
shell: bash -l {0}
run: nvm install
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '18'

- name: Install yarn
shell: bash -l {0}
run: curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - && echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list && sudo apt-get update && sudo apt-get install yarn
- name: Install Dependencies
run: npm install

- name: use yarn to install dependencies
shell: bash -l {0}
run: yarn install

- name: Git Setup Global Config
shell: bash -l {0}
run: export GITHUB_USER=justinvforvendetta && echo "GITHUB_USER=$GITHUB_USER" >> $GITHUB_ENV && echo "GITHUB_TOKEN=${{ secrets.JUSTINVFORVENDETTA }}" >> $GITHUB_ENV && git config --global user.email "[email protected]" && git config --global user.name $GITHUB_USER
- name: Build Next.js App
run: npm run build

- name: yarn install and deploy
shell: bash -l {0}
run: export GITHUB_USER=justinvforvendetta && echo "GITHUB_USER=$GITHUB_USER" >> $GITHUB_ENV && echo "GITHUB_TOKEN=${{ secrets.JUSTINVFORVENDETTA }}" >> $GITHUB_ENV && git config --global user.email "[email protected]" && git config --global user.name justinvforvendetta && git remote set-url origin https://$GITHUB_USER:${{ secrets.JUSTINVFORVENDETTA }}@github.com/vergecurrency/vergecurrency.com.git && npm install -g gh-pages --save-dev && gh-pages -t true -m 'Github Actions automated build' -d docs && yarn run deploy

- name: Upload site
uses: actions/upload-artifact@v3
with:
name: vergecurrency.com
path: |
./src/*.js
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v3
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Actions"
git checkout --orphan gh-pages
git --work-tree . add --all
git --work-tree . commit -m "Deploy to GitHub Pages"
git push origin HEAD:gh-pages --force

0 comments on commit ffd100e

Please sign in to comment.