-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMain.yml
More file actions
35 lines (26 loc) · 809 Bytes
/
Main.yml
File metadata and controls
35 lines (26 loc) · 809 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
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":"ismailzilud","description":"ismailzilud AI Agent"}'