-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* abstract deployments/triggers to separate files * remove triggers and some code cleanup * Release centrifuge-react and Fabric (#1600) * Centrifuge App: Fix connecting single account (#1620) * feat: implement oracle-v2 (#1558) * Centrifuge App: Remove accrued interest from portfolio card (#1625) * Moonbeam to demo (#1627) * CentrifugeJS: Fix transactions (#1622) * Centrifuge App: Tinlake assets (#1631) * Centrifuge App: Multicall for Tinlake assets (#1634) * Centrifuge App: Get all proxies (#1637) * Create LICENSE (#1646) * Update support email (#1645) * Centrifuge App: Pending write-off and epoch changes (#1628) * Show anamoy pool after chain upgrade (#1648) * Centrifuge App: Portfolio asset allocation (#1641) * Centrifuge App: Fix asset class (#1650) * Centrifuge App: Fix asset detail when subquery is down (#1653) * Centrifuge App: Fix asset class in pool table (#1652) * Fix connection guard for evm wallets on cent pool (#1661) * swap to goldsky subgraph (#1662) * feat: composition table (#1623) * Centrifuge App: Table redesign (#1663) * Centrifuge App: Code splitting and cleaning up unused files (#1660) * fix: fix trx bug (#1667) * Centrifuge App: Prime overview page (#1659) * CentrifugeApp: Portfolio transaction table (#1605) * Centrifuge App: Liquidity pools investments (#1542) * Centrifuge App: Fix investor transaction report (#1675) * fix: safe auth (#1651) * Centrifuge App: Fixes (#1673) * fix: use new window (#1676) * fix: use new window * use query param * fix data sharing agreement text * genericize * rename * Centrifuge App: Fix getting loan NFT data (#1685) * Centrifuge App: Fix formatting for investor transactions (#1686) * Centrifuge App: Prime detail (#1684) * CentrifugeJS: Fix query for domain routers (#1692) * Fix closed asset handling (#1693) * Centrifuge App: Fix env var (#1694) * fix: portfolio column spacing (#1698) * Centrifuge App: Restricted transfers (#1697) * remove moonbean alpha * debug commenting on PR * update demo endpoints --------- Co-authored-by: Onno Visser <[email protected]> Co-authored-by: JP <[email protected]> Co-authored-by: Jeroen <[email protected]> Co-authored-by: Sophia <[email protected]> Co-authored-by: Adam Stox <[email protected]>
- Loading branch information
1 parent
acaae0a
commit d2d1c7f
Showing
10 changed files
with
112 additions
and
60 deletions.
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
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,43 @@ | ||
name: "Deploy all apps" | ||
on: | ||
# Allow this wofkflow as a universal "deployer" to | ||
# call from other workflows. | ||
workflow_call: | ||
inputs: | ||
environment: | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
app: | ||
name: webapp | ||
uses: ./.github/workflows/centrifuge-app.yml | ||
secrets: inherit | ||
with: | ||
deploy_env: ${{ inputs.environment}} | ||
|
||
|
||
pinning: | ||
if: ${{ inputs.environment != 'ff-prod' }} | ||
name: pinning | ||
uses: ./.github/workflows/pinning-api.yml | ||
secrets: inherit | ||
with: | ||
deploy_env: ${{ inputs.environment }} | ||
|
||
|
||
onboarding: | ||
if: ${{ inputs.environment != 'ff-prod' }} | ||
name: onboarding | ||
uses: ./.github/workflows/onboarding-api.yml | ||
secrets: inherit | ||
with: | ||
deploy_env: ${{ inputs.environment}} | ||
|
||
faucet: | ||
if: ${{ inputs.environment == 'demo' || inputs.environment == 'development' }} | ||
name: faucet | ||
uses: ./.github/workflows/faucet-api.yml | ||
secrets: inherit | ||
with: | ||
deploy_env: ${{ inputs.environment}} |
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,18 @@ | ||
name: deploy-main | ||
on: | ||
push: | ||
branches: main | ||
pull_request: | ||
paths: | ||
- '.github/workflows/main-branch-deploys.yml' | ||
|
||
jobs: | ||
trigger: | ||
name: deploy-${{ matrix.env }} | ||
strategy: | ||
matrix: | ||
env: ['ff-prod', 'development'] | ||
uses: ./.github/workflows/deploy_all.yml | ||
secrets: inherit | ||
with: | ||
environment: ${{ matrix.env }} |
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,17 @@ | ||
name: Deploy to Catalyst and demo | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
environment: | ||
type: choice | ||
description: where to deploy | ||
options: | ||
- demo | ||
- catalyst | ||
jobs: | ||
deploy: | ||
name: deploy-${{ inputs.environment }} | ||
uses: ./.github/workflows/deploy_all.yml | ||
secrets: inherit | ||
with: | ||
environment: ${{ inputs.environment }} |
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
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