Skip to content

Commit 99280fc

Browse files
committed
ci: add repomix workflow to pack repo as artifact
1 parent 2413bd3 commit 99280fc

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

.github/workflows/repomix.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: Repomix
2+
3+
on:
4+
push:
5+
branches: [master]
6+
workflow_dispatch:
7+
8+
permissions:
9+
contents: read
10+
11+
jobs:
12+
pack:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
16+
- uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
17+
with:
18+
node-version: 22
19+
- run: npx -y repomix
20+
- uses: actions/upload-artifact@v4
21+
with:
22+
name: repomix-output
23+
path: repomix-output.xml

0 commit comments

Comments
 (0)