Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 78be100

Browse files
authored
Merge pull request #24 from microsoft/dev/edskrod/master/Issue17
Added a comment to workflows
2 parents 5ca670b + eb6b4be commit 78be100

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/cd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,6 +174,6 @@ jobs:
174174
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
175175
with:
176176
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
177-
asset_path: MyWpfApp.Package\AppPackages\AppPackages.zip
177+
asset_path: MyWpfApp.Package\AppPackages\AppPackages.zip # Use the full path here because environment variables are not in scope
178178
asset_name: AppPackages.zip
179179
asset_content_type: application/zip

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,4 +98,4 @@ jobs:
9898
uses: actions/upload-artifact@v1
9999
with:
100100
name: MSIX Package
101-
path: MyWpfApp.Package\AppPackages\
101+
path: MyWpfApp.Package\AppPackages\ # Use the full path here because environment variables are not in scope

0 commit comments

Comments
 (0)