@@ -12,10 +12,10 @@ jobs:
12
12
strategy :
13
13
matrix :
14
14
include :
15
- - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, suffix: .gz }
16
- - { target: x86_64-apple-darwin, os: macos-latest, suffix: .gz }
17
- - { target: aarch64-apple-darwin, os: macos-latest, suffix: .gz }
18
- - { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip }
15
+ - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, suffix: .gz }
16
+ - { target: x86_64-apple-darwin, os: macos-latest, suffix: .gz }
17
+ - { target: aarch64-apple-darwin, os: macos-latest, suffix: .gz }
18
+ - { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip }
19
19
runs-on : ${{ matrix.os }}
20
20
steps :
21
21
- uses : actions/checkout@v4
38
38
if : ${{ matrix.os == 'windows-latest' }}
39
39
run : Compress-Archive -Path target\${{ matrix.target }}\release\svdtools.exe -DestinationPath svdtools-${{ matrix.target }}${{ matrix.suffix }}
40
40
41
- - uses : actions/upload-artifact@v3
41
+ - uses : actions/upload-artifact@v4
42
42
with :
43
43
name : svdtools-${{ matrix.target }}
44
44
path : svdtools-${{ matrix.target }}${{ matrix.suffix }}
49
49
needs : [build]
50
50
steps :
51
51
- uses : actions/checkout@v4
52
- - uses : actions/download-artifact@v4.1.7
52
+ - uses : actions/download-artifact@v4
53
53
with :
54
54
path : artifacts
55
55
- run : ls -R ./artifacts
0 commit comments