Skip to content

Commit

Permalink
Merge branch 'main' of github.com:HackIllinois/adonix into dev/nikhit…
Browse files Browse the repository at this point in the history
…a/decisionMVP
  • Loading branch information
npunati27 committed Oct 31, 2023
2 parents 9ea3b9f + b8c5c2a commit 4a66044
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install modules
run: yarn
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=preview --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Vercel CLI
run: npm install --global vercel@latest
- uses: actions/setup-node@v3
with:
node-version: 18
cache: 'yarn'
- name: Install modules
run: yarn
- name: Pull Vercel Environment Information
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }}
- name: Build Project Artifacts
Expand Down

0 comments on commit 4a66044

Please sign in to comment.