forked from BillionsNetwork/verified-agent-identity
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmain.yml
More file actions
36 lines (26 loc) · 812 Bytes
/
main.yml
File metadata and controls
36 lines (26 loc) · 812 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
30
31
32
33
34
35
36
name: Verify Human Identity
on:
workflow_dispatch:
jobs:
verify:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install ClawHub
run: npm install -g clawhub
- name: Install Verified Agent Identity
run: clawhub install verified-agent-identity
- name: Install dependencies
run: |
cd scripts
npm install
- name: Create Ethereum Identity
run: node scripts/createNewEthereumIdentity.js
- name: Link Human to Agent
run: |
node scripts/manualLinkHumanToAgent.js --challenge '{"name":"setyaid","description":"setyaid AI Agent"}'