This commit is contained in:
Marcus Markiewicz 2021-07-04 21:38:58 -04:00 коммит произвёл GitHub
Родитель 51e756022c
Коммит 3337ad4c72
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 10 добавлений и 6 удалений

16
.github/workflows/CD.yml поставляемый
Просмотреть файл

@ -73,12 +73,6 @@ jobs:
- name: Remove the pfx
run: Remove-Item -path "./Source/Packaging/GitHubActionsWorkflow.pfx"
- name: Upload artifact
uses: actions/upload-artifact@v1.0.0
with:
name: MSIX
path: "./Source/Packaging/AppPackages/"
# Create the release: https://github.com/actions/create-release
- name: Create release
id: create_release
@ -90,3 +84,13 @@ jobs:
release_name: ${{ github.ref }}.${{ matrix.ChannelName }}.${{ matrix.targetplatform }}
draft: true
prerelease: true
- name: Upload Release Asset
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN}}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./Source/Packaging/AppPackages/
asset_name: ${{ matrix.MsixPackageId }}.msix
asset_content_type: application/msix