Skip to content

Commit

Permalink
Update build action to include db.json in artifact
Browse files Browse the repository at this point in the history
  • Loading branch information
jglim committed Nov 9, 2021
1 parent 4e0ddaa commit e71165f
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ on:
jobs:

build:

strategy:
matrix:
configuration: [Release]
Expand Down Expand Up @@ -47,9 +46,13 @@ jobs:
env:
Configuration: ${{ matrix.configuration }}

# Upload the MSIX package: https://github.com/marketplace/actions/upload-a-build-artifact
# Copy definitions (db.json) into build output
- name: Insert db.json into build
run: xcopy UnlockECU\db.json UnlockECU\VisualUnlockECU\bin\Release\net5.0-windows\

# Upload the completed build
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
name: VisualUnlockECU
path: UnlockECU\VisualUnlockECU\bin\Release\net5.0-windows
name: VisualUnlockECU (Windows, ZIP)
path: UnlockECU/VisualUnlockECU/bin/Release/net5.0-windows

0 comments on commit e71165f

Please sign in to comment.