Skip to content

Commit a08217e

Browse files
author
github-actions
committed
build: 5e16f0be1ca97a9874f87cf0adf3f115da51d8f6
1 parent b0cd375 commit a08217e

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/reusable.yml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,6 @@ jobs:
1414
if: (contains(github.event.head_commit.message, 'build') && !contains(github.event.head_commit.message, 'skip ci'))
1515
name: distribute-job
1616
runs-on: ubuntu-latest
17-
strategy:
18-
matrix:
19-
exchange: ['bingx', 'bitget', 'bitmart', 'bitmex', 'bybit', 'coinex', 'cryptocom', 'gate', 'hashkey', 'htx', 'hyperliquid', 'kucoin', 'kucoinfutures', 'mexc', 'okx', 'woo', 'woofipro']
2017
steps:
2118
- name: Checkout code
2219
uses: actions/checkout@v4

.github/workflows/transfer.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,10 @@ on:
66

77
jobs:
88
use-reusable-workflow:
9+
strategy:
10+
matrix:
11+
exchange_name: [kucoin, bybit] # ['bingx', 'bitget', 'bitmart', 'bitmex', 'bybit', 'coinex', 'cryptocom', 'gate', 'hashkey', 'htx', 'hyperliquid', 'kucoin', 'kucoinfutures', 'mexc', 'okx', 'woo', 'woofipro']
912
uses: ./.github/workflows/reusable.yml
1013
with:
11-
exchange_name: kucoin
14+
exchange_name: ${{ matrix.exchange_name }}
1215
secrets: inherit

0 commit comments

Comments
 (0)