-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
removed sync flow and added testnet and devnet flows with different e…
…nv secrets
- Loading branch information
1 parent
18748f3
commit e8f01bb
Showing
2 changed files
with
49 additions
and
1 deletion.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
name: Deploy to Cloudflare Pages | ||
|
||
on: | ||
push: | ||
branches: | ||
- main # or the branch you want to deploy from | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
environment: testnet | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
- name: Set up Node.js | ||
uses: actions/setup-node@v2 | ||
with: | ||
node-version: '20' # Use the Node.js version compatible with your project | ||
|
||
- name: Install pnpm | ||
run: npm install -g pnpm | ||
|
||
- name: Install Doppler CLI | ||
run: | | ||
(curl -Ls --tlsv1.2 --proto "=https" --retry 3 https://cli.doppler.com/install.sh || wget -t 3 -qO- https://cli.doppler.com/install.sh) | sudo sh | ||
- name: Set up Doppler | ||
run: doppler configure set token ${{ secrets.DOPPLER_TOKEN }} | ||
|
||
- name: Fetch secrets from Doppler and boot | ||
run: doppler run -- npm run boot | ||
env: | ||
DOPPLER_TOKEN: ${{ secrets.DOPPLER_TOKEN }} | ||
|
||
- name: Clean up build output | ||
working-directory: ./apps/info-dashboard/.next | ||
run: | | ||
rm -rf cache | ||
- name: Deploy to Cloudflare Pages | ||
env: | ||
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }} | ||
CLOUDFLARE_ACCOUNT_ID: ${{ secrets.CLOUDFLARE_ACCOUNT_ID }} | ||
CLOUDFLARE_PROJECT_NAME: ${{ secrets.CLOUDFLARE_PROJECT_NAME }} | ||
run: | | ||
npx wrangler pages deploy ./apps/info-dashboard/out --project-name=$CLOUDFLARE_PROJECT_NAME --branch=main |