We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e53076 commit 9c41faaCopy full SHA for 9c41faa
1 file changed
.github/workflows/agent-source-export.yml
@@ -0,0 +1,25 @@
1
+name: agent-source-export
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - agent-source-export
7
8
+permissions:
9
+ contents: read
10
11
+jobs:
12
+ export:
13
+ runs-on: ubuntu-latest
14
+ steps:
15
+ - name: Checkout
16
+ uses: actions/checkout@v4
17
+ - name: Package source
18
+ run: tar --exclude=.git --exclude=target -czf "$RUNNER_TEMP/pi_agent_rust-source.tar.gz" .
19
+ - name: Upload source
20
+ uses: actions/upload-artifact@v4
21
+ with:
22
+ name: pi-agent-rust-source
23
+ path: ${{ runner.temp }}/pi_agent_rust-source.tar.gz
24
+ if-no-files-found: error
25
+ retention-days: 1
0 commit comments