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 138741e commit 8c316a4Copy full SHA for 8c316a4
1 file changed
.github/workflows/agent-source-export-v2.yml
@@ -0,0 +1,25 @@
1
+name: agent-source-export-v2
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - agent-source-export-v2
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-v2.tar.gz" .
19
+ - name: Upload source
20
+ uses: actions/upload-artifact@v4
21
+ with:
22
+ name: pi-agent-rust-source-v2
23
+ path: ${{ runner.temp }}/pi_agent_rust-source-v2.tar.gz
24
+ if-no-files-found: error
25
+ retention-days: 1
0 commit comments