Skip to content

Commit ec60153

Browse files
author
Ahmad Noman Musleh
committed
Fixed some issues
1 parent f28a461 commit ec60153

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/publish_nuget_package_prereleased.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@ jobs:
88
build:
99
runs-on: windows-latest
1010

11-
env:
12-
BUILD_CONFIG: 'Release'
13-
PROJECT: 'src/OpenAPI.Net/OpenAPI.Net.csproj'
14-
1511
steps:
1612
- uses: actions/checkout@v2
1713

@@ -27,13 +23,13 @@ jobs:
2723
dotnet-version: '6.0.x'
2824

2925
- name: Restore dependencies
30-
run: dotnet restore $PROJECT
26+
run: dotnet restore ./src/OpenAPI.Net/OpenAPI.Net.csproj
3127

3228
- name: Build
33-
run: dotnet build $PROJECT --configuration $BUILD_CONFIG --no-restore
29+
run: dotnet build $PROJECT --configuration Release --no-restore
3430

3531
- name: Decrypt Certificate
36-
run: .\FileEncrypt.exe decrypt .\certificate.pfx.encrypted ${{secrets.CERTIFICATE_DECRYPTION_KEY}} ${{secrets.CERTIFICATE_DECRYPTION_IV}}
32+
run: FileEncrypt decrypt .\certificate.pfx.encrypted ${{secrets.CERTIFICATE_DECRYPTION_KEY}} ${{secrets.CERTIFICATE_DECRYPTION_IV}}
3733

3834
- name: Sign Package
3935
run: nuget sign **\*.nupkg -CertificatePath certificate.pfx -Timestamper http://timestamp.digicert.com/ -CertificatePassword ${{secrets.CERTIFICATE_PASSWORD}} -NonInteractive

src/OpenAPI.Net/OpenAPI.Net.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<PackageTags>cTrader, Open API, Spotware</PackageTags>
1010
<Description>A .NET RX library for Spotware Open API</Description>
1111
<PackageId>Spotware.OpenAPI.Net</PackageId>
12-
<Version>1.3.7-rc13</Version>
12+
<Version>1.3.7-rc14</Version>
1313
<Platforms>AnyCPU</Platforms>
1414
<Company>Spotware</Company>
1515
<Authors>Spotware</Authors>

0 commit comments

Comments
 (0)