Skip to content

Commit

Permalink
Update deploy.yml (#627)
Browse files Browse the repository at this point in the history
Co-authored-by: Karthik Mohan <[email protected]>
  • Loading branch information
karthikmohan and karthikmohan-esper committed Aug 27, 2023
1 parent 4672e2a commit ac2baf8
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ env:
USE_GITHUB_DATA: "true"
MEDIUM_USERNAME: "saadpasta" # Change this to your medium username
on:
workflow_dispatch:
push:
branches:
- master
Expand All @@ -16,16 +17,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2 # If you're using actions/checkout@v2 you must set persist-credentials to false in most cases for the deployment to work correctly.
uses: actions/checkout@v3 # If you're using actions/checkout@v3 you must set persist-credentials to false in most cases for the deployment to work correctly.
with:
persist-credentials: false

- name: Setup Node.js 🔧
uses: actions/setup-node@v2
with:
node-version: 14.x

- name: Update npm 🚀
run: npm install -g npm@latest

- name: Install and Build 🔧 # Build the Project
run: |
npm install
npm run build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@releases/v3
uses: JamesIves/github-pages-deploy-action@v4
with:
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }} # This is provided by GitHub.
BRANCH: gh-pages # The branch the action should deploy to.
Expand Down

1 comment on commit ac2baf8

@vercel
Copy link

@vercel vercel bot commented on ac2baf8 Aug 27, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.