We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 42fb03d commit 6d638a4Copy full SHA for 6d638a4
.github/workflows/release.yml
@@ -68,10 +68,20 @@ jobs:
68
dotnet publish -c ${{ matrix.configuration }}
69
$path = (Get-ChildItem -r **/P3Manager_*.msix).FullName
70
$path = $path -replace '\\','/'
71
+ $cert_path = (Get-ChildItem -r **/P3Manager_*.cer).FullName
72
+ $cert_path = $cert_path -replace '\\','/'
73
echo "MSIX_PATH=$path" >> $env:GITHUB_ENV
74
+ echo "CERT_PATH=$cert_path" >> $env:GITHUB_ENV
75
echo "path=$path"
76
77
- name: Release
78
uses: softprops/action-gh-release@v1
79
with:
80
files: ${{ env.MSIX_PATH }}
81
+
82
+ - name: Release
83
+ uses: softprops/action-gh-release@v1
84
+ with:
85
+ files: |
86
+ ${{ env.MSIX_PATH }}
87
+ ${{ env.CERT_PATH }}
0 commit comments