Skip to content

Commit 6d638a4

Browse files
committed
also export cert
1 parent 42fb03d commit 6d638a4

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

.github/workflows/release.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,10 +68,20 @@ jobs:
6868
dotnet publish -c ${{ matrix.configuration }}
6969
$path = (Get-ChildItem -r **/P3Manager_*.msix).FullName
7070
$path = $path -replace '\\','/'
71+
$cert_path = (Get-ChildItem -r **/P3Manager_*.cer).FullName
72+
$cert_path = $cert_path -replace '\\','/'
7173
echo "MSIX_PATH=$path" >> $env:GITHUB_ENV
74+
echo "CERT_PATH=$cert_path" >> $env:GITHUB_ENV
7275
echo "path=$path"
7376
7477
- name: Release
7578
uses: softprops/action-gh-release@v1
7679
with:
7780
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

Comments
 (0)