Skip to content

Commit

Permalink
temp: Deploy website
Browse files Browse the repository at this point in the history
  • Loading branch information
alainncls committed Nov 24, 2023
1 parent 725e022 commit 7a01ad4
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: Deploy website

on:
push:
branches: ["dev"]
paths:
- website/**
branches: ["dev", "temp/deploy-website"]

permissions:
contents: read
Expand All @@ -23,6 +21,10 @@ jobs:

runs-on: ubuntu-latest

env:
VITE_WALLETCONNECT_PROJECT_ID: ${{ vars.VITE_WALLETCONNECT_PROJECT_ID }}
VITE_INFURA_API_KEY: ${{ vars.VITE_INFURA_API_KEY }}

defaults:
run:
working-directory: website
Expand Down
5 changes: 4 additions & 1 deletion website/src/main.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,11 @@ const config = createConfig(
getDefaultConfig({
infuraId: import.meta.env.VITE_INFURA_API_KEY,
walletConnectProjectId: import.meta.env.VITE_WALLETCONNECT_PROJECT_ID || "",
appName: "Verax Website",
appName: "Verax Attestation Registry",
chains: [linea, lineaTestnet],
appDescription: "Verax is a shared registry for storing attestations of public interest on EVM chains, designed to enhance data discoverability and consumption for dApps across the network.",
appUrl: "https://ver.ax",
appIcon: "https://ver.ax/assets/verax-logo-circle-588179e3.svg",
}),
);

Expand Down

0 comments on commit 7a01ad4

Please sign in to comment.