Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/workflows/build_artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,3 +72,9 @@ jobs:
with:
name: DemoApp
path: "src/MainDemo.Wpf/bin/${{ env.buildConfiguration }}"

- name: Upload Demo3 App
uses: actions/upload-artifact@v4
with:
name: Demo3App
path: "src/MaterialDesign3.Demo.Wpf/bin/${{ env.buildConfiguration }}"
13 changes: 11 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -135,18 +135,27 @@ jobs:
name: DemoApp
path: demo-app

- name: Download Demo3 App Artifacts
uses: actions/download-artifact@v8
with:
name: Demo3App
path: demo3-app

- name: Zip Demo App
run: zip -r DemoApp.zip demo-app/*

- name: Zip Demo3 App
run: zip -r Demo3App.zip demo3-app/*

- name: Download Release Notes
uses: actions/download-artifact@v8
with:
name: ReleaseNotes

- name: Create Release
run: |
# We can't use glob pattern because of this bug https://github.com/cli/cli/issues/5099
gh release create v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft --latest --title "${{ inputs.milestone }}" --notes-file ReleaseNotes.md (Get-Item '${{ github.workspace }}/nugets/*.nupkg') '${{ github.workspace }}/DemoApp.zip'
# We can't use glob pattern because of this bug https://github.com/cli/cli/issues/5099
gh release create v${{ inputs.milestone }} --repo '${{ github.repository }}' --draft --latest --title "${{ inputs.milestone }}" --notes-file ReleaseNotes.md (Get-Item '${{ github.workspace }}/nugets/*.nupkg') '${{ github.workspace }}/DemoApp.zip' '${{ github.workspace }}/Demo3App.zip'

update_wiki:
needs: [create_release]
Expand Down
Loading