-
Notifications
You must be signed in to change notification settings - Fork 4
29 lines (24 loc) · 958 Bytes
/
build-send-sui-tx.yml
File metadata and controls
29 lines (24 loc) · 958 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: Build Send SUI Transaction
on:
workflow_dispatch:
jobs:
build-send-sui-tx:
runs-on: ubuntu-latest
env:
# Multisig specific config (can be secrets or vars)
MULTISIG_ADDRESS: ${{ vars.MULTISIG_ADDRESS }}
MULTISIG_SIGNERS_BASE64_PUBKEYS: ${{ vars.MULTISIG_SIGNERS_BASE64_PUBKEYS }}
MULTISIG_THRESHOLD: ${{ vars.MULTISIG_THRESHOLD }}
MULTISIG_WEIGHTS: ${{ vars.MULTISIG_WEIGHTS }}
MULTISIG_ADMIN_CAP_HOLDER_ADDRESS: ${{ vars.MULTISIG_ADMIN_CAP_HOLDER_ADDRESS }}
steps:
- name: Checkout Code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
- name: Install Dependencies
run: npm ci
- name: Build Send SUI Transaction
run: npx tsx examples/send-coins/send-sui.ts