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