Skip to content

Commit

Permalink
Merge pull request #30 from FH-Inway/improve-release-action
Browse files Browse the repository at this point in the history
Improve release action
  • Loading branch information
FH-Inway authored Nov 26, 2023
2 parents 2d40144 + ec076b4 commit 1634f92
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/version-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,9 +19,17 @@ jobs:

- name: Build
run: dotnet build --configuration Release EDMXTrimmer

- name: Test
run: dotnet test --logger:nunit --configuration Release EDMXTrimmer
- name: Publish Test Results
uses: EnricoMi/publish-unit-test-result-action/composite@v2
with:
files: '**/TestResults/*.xml'
comment_mode: 'off'

- name: Publish
run: dotnet publish --configuration Release EDMXTrimmer --output zip
run: dotnet publish --configuration Release EDMXTrimmer/EDMXTrimmer --output zip

- name: Upload EDMXTrimmer_${{ github.event.release.tag_name }}.zip
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 1634f92

Please sign in to comment.