From 0cd7553aa26948c230d7c7564106c47b97171af7 Mon Sep 17 00:00:00 2001 From: dpjudas Date: Sun, 11 Feb 2024 06:29:32 +0100 Subject: [PATCH] Upload and download artifact must be same version --- .github/workflows/continuous_integration.yml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous_integration.yml b/.github/workflows/continuous_integration.yml index 5757a0ee2..11f2d4c10 100644 --- a/.github/workflows/continuous_integration.yml +++ b/.github/workflows/continuous_integration.yml @@ -110,7 +110,7 @@ jobs: - name: Upload Package if: runner.os == 'Windows' # Remove to store packages of all targets - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: path: build/package name: ${{ matrix.config.name }} ${{ matrix.config.build_type }} @@ -129,7 +129,8 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' steps: - - uses: actions/download-artifact@v4 + - name: Download artifact + uses: actions/download-artifact@v4 with: name: Visual Studio 2022 Release path: build @@ -140,7 +141,8 @@ jobs: run: | ls -lR . - - uses: pyTooling/Actions/releaser@r0 + - name: Update nightly release + uses: pyTooling/Actions/releaser@r0 with: tag: nightly rm: true