-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ff-prod deploys (and less code) #1580
Closed
Closed
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
ac5c69e
ff-prod deploys (and less code)
gpmayorga f3c7379
eliminate trigger from main to apps
gpmayorga 830b010
fixes
gpmayorga 8308641
try matrix in reusable workflow
gpmayorga 5b8ec31
fix typos and linter
gpmayorga b048bab
better concurrency
gpmayorga 432a2f6
avoid deploying prod functions during ff-prod runs
gpmayorga bb7a8c9
easier URL in script
gpmayorga 2e43d08
fix faucet api
gpmayorga 842e5fc
Hide tables in liqudity tab before epoch has been closed (#1581)
sophialittlejohn 614ffbf
provide default names when job skipped
gpmayorga 63077e1
get rid of fancy name for common deployment
gpmayorga 3ab4017
Allow onboarding for users not living in country of their passport (#…
sophialittlejohn 1318770
CentrifugeJS: Fix currencies (#1584)
onnovisser 3575599
shorter name for shorter strings in the UI
gpmayorga 2db86f5
approve token fix (#1574)
709ba95
add upcoming pools (#1586)
d99b215
chore: change anemoy status (#1587)
dfbf31a
Display LpEthUSDC as USDC (#1588)
sophialittlejohn f09f62a
Merge branch 'main' into ff-prod-deploys
gpmayorga File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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 was deleted.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
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: ['moonbeam-alpha', '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 was deleted.
Oops, something went wrong.
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
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I see a double dash
faucet-api--$
here, will that cause any problems?