Skip to content

Commit

Permalink
Update WindowsLockScreenImagesBuild.yml
Browse files Browse the repository at this point in the history
Added artifact upload
  • Loading branch information
keenthinker authored Jun 23, 2024
1 parent 554c7cf commit 5b2df4b
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions .github/workflows/WindowsLockScreenImagesBuild.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,12 @@ jobs:
with:
dotnet-version: 8.0.x

- name: Build application
run: dotnet build --configuration Release --output ./releases
- name: Build executable
run: dotnet build --configuration Release --output ./release

- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-directory
path: .\release\
overwrite: true

0 comments on commit 5b2df4b

Please sign in to comment.