We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48c6244 commit d9f133aCopy full SHA for d9f133a
.github/workflows/ubuntu_arm_test.yaml
@@ -67,4 +67,20 @@ jobs:
67
working-directory: ./kclvm
68
run: export PATH=$PATH:$PWD/../_build/dist/linux/kclvm/bin && make test
69
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
86
0 commit comments