File tree Expand file tree Collapse file tree 1 file changed +10
-5
lines changed
Expand file tree Collapse file tree 1 file changed +10
-5
lines changed Original file line number Diff line number Diff line change 1919 runs-on : ${{ matrix.os }}
2020 strategy :
2121 matrix :
22- os : [ubuntu-latest, macos-latest, windows-latest]
22+ os : [ubuntu-latest, macos-latest, macos-13, windows-latest]
2323 fail-fast : false
2424 steps :
2525
@@ -277,12 +277,17 @@ jobs:
277277 env :
278278 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
279279 run : |
280- if [[ ${{ runner .os }} == "Linux " ]]; then
280+ if [[ ${{ matrix .os }} == "ubuntu-latest " ]]; then
281281 gh release upload ${{ github.ref_name }} als-ubuntu.zip --clobber
282282 fi
283- if [[ ${{ runner.os }} == "macOS" ]]; then
284- gh release upload ${{ github.ref_name }} als-macos.zip --clobber
283+ # arm64 macos
284+ if [[ ${{ matrix.os }} == "macos-latest" ]]; then
285+ gh release upload ${{ github.ref_name }} als-macos-arm64.zip --clobber
286+ fi
287+ # x64 macos
288+ if [[ ${{ matrix.os }} == "macos-13" ]]; then
289+ gh release upload ${{ github.ref_name }} als-macos-x64.zip --clobber
285290 fi
286- if [[ ${{ runner .os }} == "Windows " ]]; then
291+ if [[ ${{ matrix .os }} == "windows-latest " ]]; then
287292 gh release upload ${{ github.ref_name }} als-windows.zip --clobber
288293 fi
You can’t perform that action at this time.
0 commit comments