Skip to content

Commit bff614a

Browse files
authored
ci(release.yml): Attempt to fix release
1 parent 7b8e220 commit bff614a

File tree

1 file changed

+20
-3
lines changed

1 file changed

+20
-3
lines changed

.github/workflows/release.yml

Lines changed: 20 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,7 @@ jobs:
8080
if: matrix.target
8181
run: |
8282
mv core/tsc-dyn.${{ matrix.ext }} core/tsc-dyn.${{ matrix.target }}.${{ matrix.ext }}
83+
8384
- name: Make a target-explicit copy of native-build's binary
8485
if: ${{ !matrix.target && matrix.host }}
8586
shell: bash
@@ -89,7 +90,7 @@ jobs:
8990
- name: Upload binary
9091
uses: actions/upload-artifact@v4
9192
with:
92-
name: tsc-dyn
93+
name: tsc-dyn.${{ matrix.host }}
9394
path: core/tsc-dyn.*${{ matrix.ext }}
9495
if-no-files-found: error
9596

@@ -106,10 +107,26 @@ jobs:
106107
bin/dev release-notes $(git describe --tags --abbrev=0) > RELEASE-NOTES
107108
cat RELEASE-NOTES
108109
109-
- name: Download binaries
110+
- name: Download binaries (x86_64-apple-darwin)
111+
uses: actions/download-artifact@v4
112+
with:
113+
name: tsc-dyn.x86_64-apple-darwin
114+
115+
- name: Download binaries (aarch64-apple-darwin)
110116
uses: actions/download-artifact@v4
111117
with:
112-
name: tsc-dyn
118+
name: tsc-dyn.aarch64-apple-darwin
119+
120+
- name: Download binaries (x86_64-unknown-linux-gnu)
121+
uses: actions/download-artifact@v4
122+
with:
123+
name: tsc-dyn.x86_64-unknown-linux-gnu
124+
125+
- name: Download binaries (x86_64-pc-windows-msvc)
126+
uses: actions/download-artifact@v4
127+
with:
128+
name: tsc-dyn.x86_64-pc-windows-msvc
129+
113130
- run: ls -R
114131

115132
- name: Create GitHub Release

0 commit comments

Comments
 (0)