This repository has been archived by the owner on Aug 7, 2024. It is now read-only.
v2.104.3 #1863
Workflow file for this run
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: Deploy to Vercel | |
env: | |
VERCEL_ORG_ID: ${{ secrets.VERCEL_ORG_ID }} | |
VERCEL_PROJECT_ID: ${{ secrets.VERCEL_PROJECT_ID }} | |
on: | |
workflow_dispatch: | |
release: | |
types: [published] | |
push: | |
# this will deploy data files only when no release is created | |
branches: | |
- main | |
paths: | |
- "data/**" | |
- "pages/docs/**" | |
jobs: | |
deploy: | |
if: github.repository == 'EddieHubCommunity/BioDrop' | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: install Vercel CLI | |
run: npm install --global vercel@latest | |
- name: pull Vercel environment information | |
run: vercel pull --yes --environment=production --token=${{ secrets.VERCEL_TOKEN }} | |
- name: build project artifacts | |
run: vercel build --prod --token=${{ secrets.VERCEL_TOKEN }} | |
- name: deploy project artifacts to Vercel | |
run: | | |
OUTPUT=$(du --inodes -d 5 .vercel/output) | |
echo "$OUTPUT" | |
LAST=$(echo "$OUTPUT" | tail -n 1) | |
PERCENTAGE=$(echo "$LAST" | awk 'BEGIN {maxtotal=15000} { printf "%.2f%%", ($1/maxtotal*100) }') | |
echo "Vercel file usage percentage" >> $GITHUB_STEP_SUMMARY | |
echo "$PERCENTAGE" >> $GITHUB_STEP_SUMMARY | |
vercel deploy --prebuilt --prod --token=${{ secrets.VERCEL_TOKEN }} | |
load-data: | |
runs-on: ubuntu-latest | |
needs: deploy | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
data: | |
- 'data/**' | |
- name: load json files | |
if: steps.changes.outputs.data == 'true' | |
run: curl -L -f https://biodrop.io/api/system/reload?secret=${{ secrets.BIODROP_API_SECRET }} | |
- name: load testimonials json files for db managed profiles | |
if: steps.changes.outputs.data == 'true' | |
run: curl -L -f https://biodrop.io/api/system/testimonials-forms?secret=${{ secrets.BIODROP_API_SECRET }} |