1
0
mirror of https://github.com/f4exb/sdrangel.git synced 2024-12-23 10:05:46 -05:00

Fixed CI/CD issues and warnings (1)

This commit is contained in:
f4exb 2022-12-19 19:58:49 +01:00
parent 168ac70767
commit e430ca4d4f

View File

@ -42,7 +42,7 @@ jobs:
echo github.workspace: ${{ github.workspace }} echo github.workspace: ${{ github.workspace }}
- name: Get version - name: Get version
id: 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 - name: Install basic dependencies on Windows
if: startsWith(matrix.config.os, 'windows') if: startsWith(matrix.config.os, 'windows')
run: | run: |
@ -92,6 +92,6 @@ jobs:
path: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe path: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
- name: Upload release - name: Upload release
if: startsWith(github.ref, 'refs/tags/') if: startsWith(github.ref, 'refs/tags/')
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v0.1.13
with: with:
files: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe files: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe