Skip to content

Commit 7eefc89

Browse files
committed
feat: add artifact upload step for build outputs
1 parent 0920053 commit 7eefc89

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/build-linux-release.yml

+6
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ jobs:
6767
docker cp $container_id:/.output/ctx ./dist/ctx-${{ env.VERSION }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}
6868
docker rm $container_id
6969
70+
- name: 📤 Upload build artifact
71+
uses: actions/upload-artifact@v4
72+
with:
73+
name: ctx-${{ env.VERSION }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}
74+
path: dist/ctx-${{ env.VERSION }}-${{ matrix.platform.os }}-${{ matrix.platform.arch }}
75+
7076
- name: 📤 Upload release assets
7177
uses: softprops/[email protected]
7278
if: startsWith(github.ref, 'refs/tags/')

0 commit comments

Comments
 (0)