Skip to content

Commit 32d489c

Browse files
committed
Fix release process
1 parent 5903362 commit 32d489c

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

.github/workflows/cli-release.yml

+5-4
Original file line numberDiff line numberDiff line change
@@ -54,14 +54,15 @@ jobs:
5454
- name: Upload Artifacts
5555
uses: actions/upload-artifact@v4
5656
with:
57-
path: "${{ env.ARCHIVE }}.*"
57+
path: "cli/${{ env.ARCHIVE }}.*"
5858
name: "${{ env.ARCHIVE }}"
5959
overwrite: true
60-
if: matrix.toolchain == 'stable' && github.ref_name == 'main'
60+
if: matrix.toolchain == 'stable' # && github.ref_name == 'main'
6161
- name: Publish GitHub Release
6262
uses: softprops/action-gh-release@v2
6363
with:
6464
draft: true
65-
name: "Release ${{ env.VERSION }}"
65+
name: Trunk ${{ env.VERSION }}
66+
body: Trunk ${{ env.VERSION }} builds for amd64 and arm64 Linux.
6667
files: "trunk-*"
67-
if: matrix.toolchain == 'stable' && github.ref_name == 'main'
68+
if: matrix.toolchain == 'stable' # && github.ref_name == 'main'

0 commit comments

Comments
 (0)