From 4644f1ae6e5787f0e5ff5f8321a0ee30052390fc Mon Sep 17 00:00:00 2001 From: Andrey Zgarbul Date: Thu, 14 Nov 2024 21:21:53 +0300 Subject: [PATCH] fix deploy --- .github/workflows/release.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e10c4142..6eb9df33 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -12,10 +12,10 @@ jobs: strategy: matrix: include: - - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, suffix: .gz } - - { target: x86_64-apple-darwin, os: macos-latest, suffix: .gz } - - { target: aarch64-apple-darwin, os: macos-latest, suffix: .gz } - - { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip } + - { target: x86_64-unknown-linux-gnu, os: ubuntu-20.04, suffix: .gz } + - { target: x86_64-apple-darwin, os: macos-latest, suffix: .gz } + - { target: aarch64-apple-darwin, os: macos-latest, suffix: .gz } + - { target: x86_64-pc-windows-msvc, os: windows-latest, suffix: .zip } runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 @@ -38,7 +38,7 @@ jobs: if: ${{ matrix.os == 'windows-latest' }} run: Compress-Archive -Path target\${{ matrix.target }}\release\svdtools.exe -DestinationPath svdtools-${{ matrix.target }}${{ matrix.suffix }} - - uses: actions/upload-artifact@v3 + - uses: actions/upload-artifact@v4 with: name: svdtools-${{ matrix.target }} path: svdtools-${{ matrix.target }}${{ matrix.suffix }} @@ -49,7 +49,7 @@ jobs: needs: [build] steps: - uses: actions/checkout@v4 - - uses: actions/download-artifact@v4.1.7 + - uses: actions/download-artifact@v4 with: path: artifacts - run: ls -R ./artifacts