diff options
author | Nikias Bassen | 2023-09-14 01:55:18 +0200 |
---|---|---|
committer | Nikias Bassen | 2023-09-14 01:55:18 +0200 |
commit | 17969ef91403f1a914d43584caf9fa0da89d649e (patch) | |
tree | 8db7e662c34abb4098b8e834559e241490ba0a08 | |
parent | cc9c68e298cadab4b5dfbb32f36fe71b2daf47e0 (diff) | |
download | idevicerestore-17969ef91403f1a914d43584caf9fa0da89d649e.tar.gz idevicerestore-17969ef91403f1a914d43584caf9fa0da89d649e.tar.bz2 |
[github-actions] Updated to use upload-artifact@v3
-rw-r--r-- | .github/workflows/build.yml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 3606be9..9a92883 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -72,7 +72,7 @@ jobs: DESTDIR=`pwd`/dest make install tar -C dest -cf idevicerestore.tar usr - name: publish artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: idevicerestore-latest_${{env.target_triplet}} path: idevicerestore.tar @@ -182,7 +182,7 @@ jobs: DESTDIR=`pwd`/dest make install tar -C dest -cf idevicerestore.tar usr - name: publish artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: idevicerestore-latest_macOS path: idevicerestore.tar @@ -282,7 +282,7 @@ jobs: DESTDIR=`pwd`/dest make install tar -C dest -cf idevicerestore.tar ${{ env.dest }} - name: publish artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: name: idevicerestore-latest_${{ matrix.arch }}-${{ env.dest }} path: idevicerestore.tar |