File tree Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Expand file tree Collapse file tree 1 file changed +9
-6
lines changed Original file line number Diff line number Diff line change 31
31
retention-days : 5
32
32
33
33
linux-amd64 :
34
+ name : Build Linux x86_64 binary
34
35
runs-on : ubuntu-latest
35
36
steps :
36
37
- uses : actions/checkout@v4
59
60
retention-days : 5
60
61
61
62
linux-arm64 :
63
+ name : Build Linux aarch64 binary
62
64
runs-on : ubuntu-24.04-arm
63
65
steps :
64
66
- uses : actions/checkout@v4
98
100
uses : actions/download-artifact@v4
99
101
with :
100
102
path : downloaded_artifacts
101
-
102
- - name : Display structure of downloaded files
103
- run : ls -R downloaded_artifacts
104
103
105
104
- name : Prepare release binaries
106
105
run : |
@@ -162,8 +161,12 @@ jobs:
162
161
7z a -tzip -mx=9 "subtree.artifactbundle.zip" "${BUNDLE_DIR}"
163
162
164
163
- name : Upload release binaries
165
- uses : skx/github-action-publish-binaries@master
166
164
env :
167
165
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
168
- with :
169
- args : ' subtree_${{ github.event.release.tag_name }}_macos subtree_${{ github.event.release.tag_name }}_linux_x86_64 subtree_${{ github.event.release.tag_name }}_linux_arm64 subtree.artifactbundle.zip'
166
+ run : |
167
+ VERSION="${{ github.event.release.tag_name }}"
168
+ gh release upload "${VERSION}" \
169
+ "subtree_${VERSION}_macos" \
170
+ "subtree_${VERSION}_linux_x86_64" \
171
+ "subtree_${VERSION}_linux_arm64" \
172
+ "subtree.artifactbundle.zip"
You can’t perform that action at this time.
0 commit comments