Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/code-deploy-preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ jobs:
run: bunx vercel --force --token "$VERCEL_TOKEN"
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
# https://spectrum.chat/zeit/now/solved-project-linking-and-ci-cd-pipelines~5e6eb62a-9d56-47ac-9e32-0d973a523787
VERCEL_ORG_ID: 'team_IsLEAhLb9cZj6y1Bud9XYmeK'
VERCEL_PROJECT_ID: 'QmecQ8hTu4DUHv6js5U8L9pJ9vp54mg1bmRLWaS5RZCyt4'
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
CONVEX_DEPLOYMENT: 'dev:calm-quail-572'
NEXT_PUBLIC_CONVEX_URL: 'https://calm-quail-572.convex.cloud'
6 changes: 2 additions & 4 deletions .github/workflows/code-deploy-production.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ on:
paths-ignore:
- react-native-libraries.json
schedule:
# Run every 3 hours - https://crontab.guru/#0_*/3_*_*_*
- cron: '0 */3 * * *'
# Run every 1 hour - https://crontab.guru/#0_*/1_*_*_*
- cron: '0 */1 * * *'

jobs:
build:
Expand All @@ -24,7 +24,5 @@ jobs:
run: bunx vercel --force --token "$VERCEL_TOKEN" --prod
env:
VERCEL_TOKEN: ${{ secrets.VERCEL_TOKEN }}
BLOB_READ_WRITE_TOKEN: ${{ secrets.BLOB_READ_WRITE_TOKEN }}
# https://spectrum.chat/zeit/now/solved-project-linking-and-ci-cd-pipelines~5e6eb62a-9d56-47ac-9e32-0d973a523787
VERCEL_ORG_ID: 'team_IsLEAhLb9cZj6y1Bud9XYmeK'
VERCEL_PROJECT_ID: 'QmecQ8hTu4DUHv6js5U8L9pJ9vp54mg1bmRLWaS5RZCyt4'
22 changes: 22 additions & 0 deletions .github/workflows/data-update-all.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: "[CONVEX] Update libraries data"

on:
schedule:
# Run every 3 hours - https://crontab.guru/#0_*/3_*_*_*
- cron: '0 */3 * * *'

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Bun
uses: oven-sh/setup-bun@v2
- name: Install dependencies
run: bun install
- name: Validate react-native-libraries.json
run: bun data:update
env:
CONVEX_DEPLOY_KEY: ${{ secrets.CONVEX_DEPLOY_KEY }}
CONVEX_DEPLOYMENT: 'dev:calm-quail-572'
NEXT_PUBLIC_CONVEX_URL: 'https://calm-quail-572.convex.cloud'
22 changes: 0 additions & 22 deletions .github/workflows/vercel-cleanup-data-blobs.yml

This file was deleted.

1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
scripts/raw-github-results.json
secrets.json
.env
.env.local

# Standard stuff
node_modules/**/*
Expand Down
Loading