From c555b8ad5c62bafc3572d011c04bee241648b1fe Mon Sep 17 00:00:00 2001 From: Alexander Wenzel Date: Sat, 2 Apr 2022 21:59:24 +0200 Subject: [PATCH] Fix Action build --- .github/workflows/BuildPR.yml | 4 ++-- .github/workflows/Release.yml | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/BuildPR.yml b/.github/workflows/BuildPR.yml index f5b52a31..0dc7f856 100644 --- a/.github/workflows/BuildPR.yml +++ b/.github/workflows/BuildPR.yml @@ -15,7 +15,7 @@ jobs: strategy: matrix: macos: [macos-10.15, macos-11] - xcode: [Xcode_12.4] + xcode: [Xcode_12.5] steps: - name: Checkout uses: actions/checkout@v3 @@ -41,7 +41,7 @@ jobs: name: Build ${{ matrix.ubuntu }} strategy: matrix: - ubuntu: [ubuntu-18.04] + ubuntu: [ubuntu-20.04] runs-on: ${{ matrix.ubuntu }} steps: - name: Checkout diff --git a/.github/workflows/Release.yml b/.github/workflows/Release.yml index a0e76a72..48041c95 100644 --- a/.github/workflows/Release.yml +++ b/.github/workflows/Release.yml @@ -11,7 +11,7 @@ jobs: runs-on: macOS-latest strategy: matrix: - xcode: [Xcode_12.2] + xcode: [Xcode_12.5] steps: - name: Checkout uses: actions/checkout@v3 @@ -53,9 +53,9 @@ jobs: - name: Build project run: scripts/linux/build.sh - name: Make artifact executable - run: chmod -R +x build/release + run: chmod -R +x build/dist - name: Archive artifact - run: zip DLT-Linux.zip -r build/release + run: zip DLT-Linux.zip -r build/dist - name: Upload DLT artifact uses: actions/upload-artifact@v3 with: