We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 828cead commit 4f38656Copy full SHA for 4f38656
1 file changed
.github/workflows/build.yml
@@ -59,9 +59,16 @@ jobs:
59
- name: Remove the pfx
60
run: Remove-Item -path GitHubActionsWorkflow.pfx
61
62
- - name: Upload app packages and certificate
+ - name: Upload app packages
63
uses: actions/upload-artifact@v4
64
with:
65
name: ${{ matrix.platform }}-App-Package
66
path: ${{ github.workspace }}/Packages/*.msix
67
- ${{ github.workspace }}/Packages/*.cer
+
68
+ - name: Upload certificate
69
+ uses: actions/upload-artifact@v4
70
+ with:
71
+ name: ${{ matrix.platform }}-App-Certificate
72
+ path: ${{ github.workspace }}/Packages/*.cer
73
74
0 commit comments