Skip to content

Commit 8f4250c

Browse files
committed
put stdlib alongside binary file and compress it as tar file
1 parent 4c2d3fa commit 8f4250c

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

.github/workflows/build.yml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,15 @@ jobs:
3737
- name: Run tests
3838
run: cargo test --verbose
3939

40+
- name: Merge binary and mandatory files
41+
run: |
42+
mkdir cyrus
43+
cp ./target/release/cyrus ./cyrus
44+
cp -r ./stdlib ./cyrus
45+
tar -cvf ./cyrus.tar ./cyrus
46+
4047
- name: Upload as artifact
4148
uses: actions/upload-artifact@v4
4249
with:
4350
name: cyrus
44-
path: ./target/release/cyrus
51+
path: ./cyrus.tar

0 commit comments

Comments
 (0)