@@ -12,10 +12,10 @@ jobs:
1212 strategy :
1313 matrix :
1414 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 }
1919 runs-on : ${{ matrix.os }}
2020 steps :
2121 - uses : actions/checkout@v4
3838 if : ${{ matrix.os == 'windows-latest' }}
3939 run : Compress-Archive -Path target\${{ matrix.target }}\release\svdtools.exe -DestinationPath svdtools-${{ matrix.target }}${{ matrix.suffix }}
4040
41- - uses : actions/upload-artifact@v3
41+ - uses : actions/upload-artifact@v4
4242 with :
4343 name : svdtools-${{ matrix.target }}
4444 path : svdtools-${{ matrix.target }}${{ matrix.suffix }}
4949 needs : [build]
5050 steps :
5151 - uses : actions/checkout@v4
52- - uses : actions/download-artifact@v4.1.7
52+ - uses : actions/download-artifact@v4
5353 with :
5454 path : artifacts
5555 - run : ls -R ./artifacts
0 commit comments