We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a62501c + d158057 commit 0f79eb0Copy full SHA for 0f79eb0
1 file changed
.github/workflows/daily-build.yml
@@ -28,7 +28,13 @@ jobs:
28
workspaces: agentic-pipelines
29
30
- name: Build
31
- run: cargo build --verbose
+ run: cargo build --release --verbose
32
33
- name: Run tests
34
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