Browse Source

Fix env var access

pull/438/head
ionite34 11 months ago
parent
commit
71fa99ce46
No known key found for this signature in database
GPG Key ID: B3404C5F3827849B
  1. 6
      .github/workflows/release.yml

6
.github/workflows/release.yml

@ -215,13 +215,13 @@ jobs:
dotnet msbuild StabilityMatrix.Avalonia
-t:BundleApp -p:UseAppHost=true -p:SelfContained=true
-p:Configuration=Release -p:RuntimeIdentifier=${{ env.platform-id }}
-p:Version=$env:RELEASE_VERSION
-p:Version=$RELEASE_VERSION
-p:PublishDir=out
-p:PublishReadyToRun=true
-p:CFBundleShortVersionString=$env:RELEASE_VERSION
-p:CFBundleShortVersionString=$RELEASE_VERSION
-p:CFBundleName="Stability Matrix"
-p:CFBundleDisplayName="Stability Matrix"
-p:CFBundleVersion=$env:RELEASE_VERSION
-p:CFBundleVersion=$RELEASE_VERSION
-p:SentryOrg=${{ secrets.SENTRY_ORG }} -p:SentryProject=${{ secrets.SENTRY_PROJECT }}
-p:SentryUploadSymbols=true -p:SentryUploadSources=true

Loading…
Cancel
Save