Skip to content

Commit d158057

Browse files
jamesadevineCopilot
andcommitted
daily-build: publish release artifacts for Windows and Linux
Switch to release build and upload binaries as workflow artifacts. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
1 parent a62501c commit d158057

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/workflows/daily-build.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,13 @@ jobs:
2828
workspaces: agentic-pipelines
2929

3030
- name: Build
31-
run: cargo build --verbose
31+
run: cargo build --release --verbose
3232

3333
- name: Run tests
3434
run: cargo test --verbose
35+
36+
- name: Upload build artifact
37+
uses: actions/upload-artifact@v4
38+
with:
39+
name: agentic-pipelines-${{ runner.os == 'Windows' && 'win' || 'lin' }}
40+
path: agentic-pipelines/target/release/agentic-pipelines${{ runner.os == 'Windows' && '.exe' || '' }}

0 commit comments

Comments
 (0)