File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -67,15 +67,22 @@ jobs:
6767
6868 - name : Build Binary for Smoke Tests
6969 run : |
70- cargo build --bin goose
70+ cargo build --bin goose --bin goosed
7171
72- - name : Upload Binary for Smoke Tests
72+ - name : Upload goose binary
7373 uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
7474 with :
7575 name : goose-binary
7676 path : target/debug/goose
7777 retention-days : 1
7878
79+ - name : Upload goosed binary
80+ uses : actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f # v6.0.0
81+ with :
82+ name : goosed-binary
83+ path : target/debug/goosed
84+ retention-days : 1
85+
7986 smoke-tests :
8087 name : Smoke Tests
8188 runs-on : ubuntu-latest
@@ -253,11 +260,11 @@ jobs:
253260 - name : Download Binary
254261 uses : actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131 # v7.0.0
255262 with :
256- name : goose -binary
263+ name : goosed -binary
257264 path : target/debug
258265
259266 - name : Make Binary Executable
260- run : chmod +x target/debug/goose
267+ run : chmod +x target/debug/goosed
261268
262269 - name : Install Node.js Dependencies
263270 run : source ../../bin/activate-hermit && npm ci
You can’t perform that action at this time.
0 commit comments