Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/cd-packages.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
steps:
- uses: actions/checkout@v6
with:
token: ${{ secrets.GH_GITBOOK_TOKEN }}
token: ${{ secrets.RELEASE_GH_TOKEN }}
- name: Setup git identity
run: |
git config --global user.name "github-actions[bot]"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/cd-python-sdk.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/checkout@v6
with:
token: ${{ secrets.GH_GITBOOK_TOKEN }}
token: ${{ secrets.RELEASE_GH_TOKEN }}
- name: Setup git identity
run: |
git config --global user.name "github-actions[bot]"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -70,4 +70,6 @@ def get_cancellation_refund_by_escrow_query():
}}
}}
{cancellation_refund_fragment}
""".format(cancellation_refund_fragment=cancellation_refund_fragment)
""".format(
cancellation_refund_fragment=cancellation_refund_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,9 @@ def get_escrow_query():
}}
}}
{escrow_fragment}
""".format(escrow_fragment=escrow_fragment)
""".format(
escrow_fragment=escrow_fragment
)


def get_status_query(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,6 @@
}}
}}
{reward_added_event_fragment}
""".format(reward_added_event_fragment=reward_added_event_fragment)
""".format(
reward_added_event_fragment=reward_added_event_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -103,4 +103,6 @@ def get_transaction_query() -> str:
}}
}}
{transaction_fragment}
""".format(transaction_fragment=transaction_fragment)
""".format(
transaction_fragment=transaction_fragment
)
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,9 @@ def get_worker_query() -> str:
}}
}}
{worker_fragment}
""".format(worker_fragment=worker_fragment)
""".format(
worker_fragment=worker_fragment
)


def get_workers_query(filter: WorkerFilter) -> str:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,7 @@ REPO_ROOT="$(cd "${SCRIPT_DIR}/../../../../.." && pwd)"

yarn --cwd "$REPO_ROOT" workspaces focus @human-protocol/python-sdk

yarn --cwd "$REPO_ROOT" workspaces foreach -Rpt --from @human-protocol/python-sdk run build

rm -rf artifacts
cp -r "${REPO_ROOT}/node_modules/@human-protocol/core/artifacts" .
Loading