Skip to content

Commit

Permalink
chore: cleanup ci workflows and use default env
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrlc03 committed Sep 8, 2024
1 parent a5b3609 commit dd0c0a2
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 40 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,11 @@ jobs:
run: |
pnpm install
- name: Copy .env.example to .env
run: |
cp .env.example .env
working-directory: packages/interface

- name: Build
run: |
pnpm build
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/coordinator-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,7 @@ jobs:
- name: Build
run: |
pnpm run build
working-directory: packages/coordinator

- name: Run hardhat
run: |
Expand Down
37 changes: 0 additions & 37 deletions .github/workflows/coordinator-deploy.yml

This file was deleted.

5 changes: 5 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ jobs:
pnpm run install:chromium
working-directory: packages/interface

- name: Copy .env.example to .env
run: |
cp .env.example .env
working-directory: packages/interface

- name: Build
run: pnpm run build
working-directory: packages/interface
Expand Down
6 changes: 3 additions & 3 deletions packages/interface/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,14 @@ NEXT_PUBLIC_ALCHEMY_ID=

# WalletConnect (optional to support more wallets)
# Get your projectId at https://cloud.walletconnect.com
NEXT_PUBLIC_WALLETCONNECT_ID=
NEXT_PUBLIC_WALLETCONNECT_ID="21fef48091f12692cad574a6f7753643"

# -----------------
# APP CONFIGURATION
# -----------------

# Event title for the round, just for display
NEXT_PUBLIC_EVENT_NAME="ETH GLOBAL"
NEXT_PUBLIC_EVENT_NAME="Devcon"

# Unique identifier for your applications and lists - your app will group attestations by this id
NEXT_PUBLIC_ROUND_ID="open-rpgf-1"
Expand All @@ -45,7 +45,7 @@ NEXT_PUBLIC_FEEDBACK_URL=https://github.com/privacy-scaling-explorations/maci-pl

# address that will approve applications and voters
# (leaving empty means anyone can do this)
NEXT_PUBLIC_ADMIN_ADDRESS=
NEXT_PUBLIC_ADMIN_ADDRESS="0x0000000000000000000000000000000000000000"

# -----------------
# EAS CONFIGURATION
Expand Down

0 comments on commit dd0c0a2

Please sign in to comment.