Skip to content

Commit 2a62671

Browse files
committed
ci: add checksums
1 parent 7490ed8 commit 2a62671

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

.github/workflows/code-to-tree.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,16 @@ jobs:
4545
run: cat toolcall-2.json | ./code-to-tree.exe
4646
- shell: bash
4747
run: cat toolcall-3.json | ./code-to-tree.exe
48+
- shell: bash
49+
run: sha512sum code-to-tree.exe > CHECKSUM-code-to-tree.exe
4850
- uses: actions/upload-artifact@v4
4951
with:
5052
name: code-to-tree.exe
5153
path: code-to-tree.exe
54+
- uses: actions/upload-artifact@v4
55+
with:
56+
name: CHECKSUM-code-to-tree.exe
57+
path: CHECKSUM-code-to-tree.exe
5258
code-to-tree-macos13:
5359
if: contains(github.event.head_commit.message, 'NO_GH_CI') == false
5460
runs-on: macos-13
@@ -78,7 +84,12 @@ jobs:
7884
- run: cat toolcall-1.json | ./code-to-tree
7985
- run: cat toolcall-2.json | ./code-to-tree
8086
- run: cat toolcall-3.json | ./code-to-tree
87+
- run: sha512sum code-to-tree > CHECKSUM-code-to-tree
8188
- uses: actions/upload-artifact@v4
8289
with:
8390
name: code-to-tree
8491
path: code-to-tree
92+
- uses: actions/upload-artifact@v4
93+
with:
94+
name: CHECKSUM-code-to-tree
95+
path: CHECKSUM-code-to-tree

0 commit comments

Comments
 (0)