mirror of
https://github.com/f4exb/sdrangel.git
synced 2024-12-22 09:31:10 -05:00
Merge pull request #2347 from srcejon/win_code_sign
Upload signed releases rather than unsigned releases to Github
This commit is contained in:
commit
99011d8bbc
5
.github/workflows/sdrangel.yml
vendored
5
.github/workflows/sdrangel.yml
vendored
@ -94,11 +94,6 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
name: sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
||||||
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
|
|
||||||
if: startsWith(github.ref, 'refs/tags/')
|
|
||||||
uses: softprops/action-gh-release@v0.1.13
|
|
||||||
with:
|
|
||||||
files: ${{ github.workspace }}/build/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
|
||||||
|
|
||||||
build_mac:
|
build_mac:
|
||||||
runs-on: macos-14
|
runs-on: macos-14
|
||||||
|
6
.github/workflows/windows.yml
vendored
6
.github/workflows/windows.yml
vendored
@ -6,7 +6,6 @@ on:
|
|||||||
- master
|
- master
|
||||||
tags:
|
tags:
|
||||||
- 'v*'
|
- 'v*'
|
||||||
pull_request:
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
@ -110,3 +109,8 @@ jobs:
|
|||||||
with:
|
with:
|
||||||
name: sdrangel-${{ steps.get_version.outputs.version }}-win64-signed.exe
|
name: sdrangel-${{ steps.get_version.outputs.version }}-win64-signed.exe
|
||||||
path: ${{ github.workspace }}/build/signed/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
path: ${{ github.workspace }}/build/signed/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
||||||
|
- name: Upload release
|
||||||
|
if: startsWith(github.ref, 'refs/tags/')
|
||||||
|
uses: softprops/action-gh-release@v2
|
||||||
|
with:
|
||||||
|
files: ${{ github.workspace }}/build/signed/sdrangel-${{ steps.get_version.outputs.version }}-win64.exe
|
||||||
|
Loading…
Reference in New Issue
Block a user