File tree Expand file tree Collapse file tree 8 files changed +19
-7
lines changed
packages/sdk/python/human-protocol-sdk Expand file tree Collapse file tree 8 files changed +19
-7
lines changed Original file line number Diff line number Diff line change 3434 steps :
3535 - uses : actions/checkout@v6
3636 with :
37- token : ${{ secrets.GH_GITBOOK_TOKEN }}
37+ token : ${{ secrets.RELEASE_GH_TOKEN }}
3838 - name : Setup git identity
3939 run : |
4040 git config --global user.name "github-actions[bot]"
Original file line number Diff line number Diff line change 2525 steps :
2626 - uses : actions/checkout@v6
2727 with :
28- token : ${{ secrets.GH_GITBOOK_TOKEN }}
28+ token : ${{ secrets.RELEASE_GH_TOKEN }}
2929 - name : Setup git identity
3030 run : |
3131 git config --global user.name "github-actions[bot]"
Original file line number Diff line number Diff line change @@ -70,4 +70,6 @@ def get_cancellation_refund_by_escrow_query():
7070 }}
7171}}
7272{cancellation_refund_fragment}
73- """ .format (cancellation_refund_fragment = cancellation_refund_fragment )
73+ """ .format (
74+ cancellation_refund_fragment = cancellation_refund_fragment
75+ )
Original file line number Diff line number Diff line change @@ -97,7 +97,9 @@ def get_escrow_query():
9797 }}
9898}}
9999{escrow_fragment}
100- """ .format (escrow_fragment = escrow_fragment )
100+ """ .format (
101+ escrow_fragment = escrow_fragment
102+ )
101103
102104
103105def get_status_query (
Original file line number Diff line number Diff line change 1414 }}
1515}}
1616{reward_added_event_fragment}
17- """ .format (reward_added_event_fragment = reward_added_event_fragment )
17+ """ .format (
18+ reward_added_event_fragment = reward_added_event_fragment
19+ )
Original file line number Diff line number Diff line change @@ -103,4 +103,6 @@ def get_transaction_query() -> str:
103103 }}
104104}}
105105{transaction_fragment}
106- """ .format (transaction_fragment = transaction_fragment )
106+ """ .format (
107+ transaction_fragment = transaction_fragment
108+ )
Original file line number Diff line number Diff line change @@ -18,7 +18,9 @@ def get_worker_query() -> str:
1818 }}
1919}}
2020{worker_fragment}
21- """ .format (worker_fragment = worker_fragment )
21+ """ .format (
22+ worker_fragment = worker_fragment
23+ )
2224
2325
2426def get_workers_query (filter : WorkerFilter ) -> str :
Original file line number Diff line number Diff line change @@ -6,5 +6,7 @@ REPO_ROOT="$(cd "${SCRIPT_DIR}/../../../../.." && pwd)"
66
77yarn --cwd " $REPO_ROOT " workspaces focus @human-protocol/python-sdk
88
9+ yarn --cwd " $REPO_ROOT " workspaces foreach -Rpt --from @human-protocol/python-sdk run build
10+
911rm -rf artifacts
1012cp -r " ${REPO_ROOT} /node_modules/@human-protocol/core/artifacts" .
You can’t perform that action at this time.
0 commit comments