Skip to content

Commit d9f133a

Browse files
zong-zheCopilot
andauthored
fix: the release of linux arm64 artifact is missing (#1923)
* fix: add linux arm64 artifact Signed-off-by: zongzhe <[email protected]> * fix: fix typo darwin to linux Co-authored-by: Copilot <[email protected]> Signed-off-by: zongzhe <[email protected]> --------- Signed-off-by: zongzhe <[email protected]> Co-authored-by: Copilot <[email protected]>
1 parent 48c6244 commit d9f133a

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

.github/workflows/ubuntu_arm_test.yaml

+16
Original file line numberDiff line numberDiff line change
@@ -67,4 +67,20 @@ jobs:
6767
working-directory: ./kclvm
6868
run: export PATH=$PATH:$PWD/../_build/dist/linux/kclvm/bin && make test
6969
shell: bash
70+
71+
- name: Release
72+
run: export PATH=$PATH:$PWD/../_build/dist/linux/kclvm/bin && make release
73+
shell: bash
74+
75+
- name: Read VERSION file
76+
id: read_version
77+
run: |
78+
VERSION=$(cat VERSION)
79+
echo "VERSION=v${VERSION}" >> $GITHUB_ENV
80+
81+
- uses: actions/upload-artifact@v4
82+
with:
83+
name: kcl-${{ env.VERSION }}-linux-arm64
84+
if-no-files-found: error
85+
path: _build/kclvm-${{ env.VERSION }}-linux-arm64.tar.gz
7086

0 commit comments

Comments
 (0)