From bbfb85155e0a9672b6eb028b7e9e7a3fa5f53166 Mon Sep 17 00:00:00 2001 From: 20dka Date: Sat, 14 Sep 2024 22:03:47 +0200 Subject: [PATCH] fix github workflows updated upload-artifacts action --- .github/workflows/linux.yml | 8 ++++---- .github/workflows/windows.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/linux.yml b/.github/workflows/linux.yml index a560375..ef3a79c 100644 --- a/.github/workflows/linux.yml +++ b/.github/workflows/linux.yml @@ -63,13 +63,13 @@ jobs: run: bash ./scripts/${{ matrix.distro }}-${{ matrix.version }}/3-build.sh - name: Archive server artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: BeamMP-Server.${{ matrix.distro }}.${{ matrix.version }}.x86_64 path: ./bin/BeamMP-Server - name: Archive server debug info artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: debuginfo.${{ matrix.distro }}.${{ matrix.version }}.x86_64 path: ./bin/BeamMP-Server.debug @@ -134,13 +134,13 @@ jobs: run: bash ./scripts/${{ matrix.distro }}-${{ matrix.version }}/3-build.sh - name: Archive server artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: BeamMP-Server.${{ matrix.distro }}.${{ matrix.version }}.arm64 path: ./bin/BeamMP-Server - name: Archive server debug info artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: debuginfo.${{ matrix.distro }}.${{ matrix.version }}.arm64 path: ./bin/BeamMP-Server.debug diff --git a/.github/workflows/windows.yml b/.github/workflows/windows.yml index c7da0ee..343aed3 100644 --- a/.github/workflows/windows.yml +++ b/.github/workflows/windows.yml @@ -41,7 +41,7 @@ jobs: run: bash ./scripts/windows/2-build.sh - name: Archive server artifact - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v4 with: name: BeamMP-Server-windows path: ./bin/Release/BeamMP-Server.exe