Skip to content

Commit

Permalink
try to fix workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
codingki committed Dec 12, 2024
1 parent 90d7ca9 commit 044e607
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 30 deletions.
18 changes: 3 additions & 15 deletions .github/workflows/sync-staging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,9 @@ jobs:
with:
ref: staging

- id: configure
name: configure
run: git config pull.ff true

- id: pull-main
name: Pull latest 'main'
run: git pull --ff-only origin main

- id: diff-check
name: Check if 'staging' is behind 'main'
run: git diff --exit-code origin/main

- id: fast-forward
name: Fast forward 'main' → 'staging'
run: git merge --ff-only origin/main
- id: merge-main-to-staging
name: Merge 'main' → 'staging'
run: git merge --no-ff main

- id: push-staging
name: Push latest 'staging'
Expand Down
15 changes: 0 additions & 15 deletions packages/widget/src/devMode/loadWidget.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -46,21 +46,6 @@ const DevMode = () => {
routeConfig={{
goFast: true,
}}
// // @ts-expect-error - testing
// connectedAddress={{
// "cosmoshub-4": "address",
// "1": "0xaddress",
// "solana": "address",
// }}
// getCosmosSigner={(chainId) => {
// return getSigner(chainId)
// }}
// getEVMSigner={(chainId) => {
// return getSigner(chainId)
// }}
// getSVMSigner={(chainId) => {
// return getSigner(chainId)
// }}
/>
</div>
</Row>
Expand Down

0 comments on commit 044e607

Please sign in to comment.