-
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.
Signed-off-by: Griko Nibras <[email protected]>
- Loading branch information
Showing
42 changed files
with
1,424 additions
and
411 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 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,35 @@ | ||
name: Deploy (dev.ibc.fun) | ||
on: | ||
push: | ||
branches: [main] | ||
repository_dispatch: | ||
types: [deploy-dev] | ||
workflow_dispatch: | ||
|
||
jobs: | ||
sync: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- id: checkout | ||
name: Checkout | ||
uses: actions/checkout@v3 | ||
with: | ||
ref: dev | ||
|
||
- id: pull-main | ||
name: Pull latest 'main' | ||
run: git pull origin main | ||
|
||
- id: diff-check | ||
name: Check if 'dev' is behind 'main' | ||
run: git diff --exit-code origin/main | ||
|
||
- id: fast-forward | ||
if: steps.diff-check.outcome == 'failure' | ||
name: Fast forward 'main' → 'dev' | ||
run: git merge --ff-only origin/main | ||
|
||
- id: push-dev | ||
if: steps.diff-check.outcome == 'failure' | ||
name: Push latest 'dev' | ||
run: git push --set-upstream origin dev |
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 |
---|---|---|
@@ -1,47 +1,24 @@ | ||
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files. | ||
|
||
.DS_Store | ||
.env* | ||
!.env.example | ||
|
||
src/chains/ | ||
tests/downloads/ | ||
|
||
# dependencies | ||
/node_modules | ||
/.pnp | ||
.next | ||
.pnp | ||
.pnp.js | ||
|
||
# testing | ||
/coverage | ||
|
||
# next.js | ||
/.next/ | ||
/out/ | ||
|
||
# production | ||
/build | ||
|
||
# misc | ||
.DS_Store | ||
*.pem | ||
|
||
# debug | ||
npm-debug.log* | ||
yarn-debug.log* | ||
yarn-error.log* | ||
|
||
# local env files | ||
.env*.local | ||
|
||
# vercel | ||
.sentryclirc | ||
.turbo | ||
.vercel | ||
|
||
# typescript | ||
.vscode | ||
*.log | ||
*.pem | ||
*.tsbuildinfo | ||
build | ||
coverage | ||
next-env.d.ts | ||
/test-results/ | ||
/playwright-report/ | ||
/playwright/.cache/ | ||
node_modules | ||
out | ||
playwright-report | ||
playwright/.cache/ | ||
src/chains/ | ||
test-results/ | ||
tests/downloads/ | ||
|
||
# Sentry Config File | ||
.sentryclirc | ||
!.env.example |
Submodule chain-registry
updated
127 files
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 |
---|---|---|
@@ -1,5 +1,8 @@ | ||
declare namespace NodeJS { | ||
interface ProcessEnv { | ||
readonly APP_URL?: string; | ||
readonly NEXT_PUBLIC_API_URL?: string; | ||
readonly POLKACHU_USER?: string; | ||
readonly POLKACHU_PASSWORD?: string; | ||
} | ||
} |
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,3 @@ | ||
{ | ||
"extends": "./tsconfig.json" | ||
} |
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.
db9f5d3
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.
Successfully deployed to the following URLs:
ibc-dot-fun – ./
ibc-dot-fun.vercel.app
ibc.fun
www.ibc.fun
ibc-dot-fun-skip-protocol.vercel.app
ibc-dot-fun-git-main-skip-protocol.vercel.app