Skip to content

Commit 6d3133b

Browse files
authored
Merge pull request #255 from rust-embedded/artifacts
fix deploy
2 parents 4bd75cd + 4644f1a commit 6d3133b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/release.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -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
@@ -38,7 +38,7 @@ jobs:
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 }}
@@ -49,7 +49,7 @@ jobs:
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

Comments
 (0)