Skip to content

Commit 1d44953

Browse files
committed
Sign
1 parent b6f6fc5 commit 1d44953

File tree

2 files changed

+5
-6
lines changed

2 files changed

+5
-6
lines changed

.github/workflows/build_release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ name: XESmartTarget Build & MSI
22

33
on:
44
push:
5-
paths:
6-
- 'AssemblyInfo.cs'
5+
# paths:
6+
# - 'AssemblyInfo.cs'
77

88
jobs:
99
build-msi:
@@ -35,23 +35,23 @@ jobs:
3535
- name: Signtool XESmartTarget Windows
3636
shell: pwsh
3737
run: |
38-
sign.ps1 -InputFile ${{ github.workspace }}\XESmartTarget\bin\release\win-x64\publish\XESmartTarget.exe
38+
.\sign.ps1 -InputFile ${{ github.workspace }}\XESmartTarget\bin\release\win-x64\publish\XESmartTarget.exe
3939
4040
- name: Generate MSI
4141
run: powershell Setup\buildmsi_githubaction.ps1 -BuildVersion ${{ steps.extract_version.outputs.version }} -WixBinPath C:\wix
4242

4343
- name: Signtool MSI
4444
shell: pwsh
4545
run: |
46-
sign.ps1 -InputFile C:/temp/XESmartTarget-${{ steps.extract_version.outputs.version }}.msi
46+
.\sign.ps1 -InputFile C:/temp/XESmartTarget-${{ steps.extract_version.outputs.version }}.msi
4747
4848
- name: Build (Linux)
4949
run: dotnet publish "${{ github.workspace }}\XESmartTarget\XESmartTarget.csproj" -c Release -r linux-x64 -p:PublishSingleFile=true --self-contained=false
5050

5151
- name: Signtool XESmartTarget Linux
5252
shell: pwsh
5353
run: |
54-
sign.ps1 -InputFile ${{ github.workspace }}\XESmartTarget\bin\release\linux-x64\publish\XESmartTarget
54+
.\sign.ps1 -InputFile ${{ github.workspace }}\XESmartTarget\bin\release\linux-x64\publish\XESmartTarget
5555
5656
- name: Compress Linux build output
5757
shell: pwsh

AssemblyInfo.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,3 @@
3131
// [assembly: AssemblyVersion("1.0.*")]
3232
[assembly: AssemblyVersion("2.0.0.0")]
3333
[assembly: AssemblyFileVersion("2.0.0.0")]
34-

0 commit comments

Comments
 (0)