From e430ca4d4ffde50f59858af2a4601d0bb676b180 Mon Sep 17 00:00:00 2001 From: f4exb Date: Mon, 19 Dec 2022 19:58:49 +0100 Subject: [PATCH] Fixed CI/CD issues and warnings (1) --- .github/workflows/sdrangel.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/sdrangel.yml b/.github/workflows/sdrangel.yml index 24eedcf2e..95c1eb4e6 100644 --- a/.github/workflows/sdrangel.yml +++ b/.github/workflows/sdrangel.yml @@ -42,7 +42,7 @@ jobs: echo github.workspace: ${{ github.workspace }} - name: Get version id: get_version - run: echo "::set-output name=version::$(git describe --tags | cut -c2-)" + run: echo "version=$(git describe --tags | cut -c2-)" >> $GITHUB_OUTPUT - name: Install basic dependencies on Windows if: startsWith(matrix.config.os, 'windows') run: | @@ -92,6 +92,6 @@ jobs: path: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe - name: Upload release if: startsWith(github.ref, 'refs/tags/') - uses: softprops/action-gh-release@v1 + uses: softprops/action-gh-release@v0.1.13 with: files: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe