Skip to content

Commit

Permalink
fix license key
Browse files Browse the repository at this point in the history
  • Loading branch information
kilbot committed Feb 13, 2025
1 parent 17eba33 commit f57360f
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/eas-preview-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,18 @@ jobs:
- name: Install pnpm
run: npm install -g pnpm

# Add RXDB license
- name: Install jq
run: sudo apt-get install -y jq

- name: Add RXDB_LICENSE_KEY to package.json
working-directory: monorepo
env:
RXDB_LICENSE_KEY: ${{ secrets.RXDB_LICENSE_KEY }}
run: |
jq --arg license "$RXDB_LICENSE_KEY" '.accessTokens["rxdb-premium"] = $license' package.json > tmp.json && mv tmp.json package.json
# Install dependencies from your monorepo
- name: Install dependencies
run: pnpm install
Expand Down

0 comments on commit f57360f

Please sign in to comment.