Skip to content

Commit

Permalink
インストーラー作成フローの調整
Browse files Browse the repository at this point in the history
  • Loading branch information
Freeesia committed Apr 1, 2024
1 parent 0f303da commit 3e40a7c
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/dotnet-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,8 @@ jobs:
# For a list of available runner types, refer to
# https://help.github.com/en/actions/reference/workflow-syntax-for-github-actions#jobsjob_idruns-on
runs-on: windows-latest
outputs:
version: ${{ steps.gitversion.outputs.assemblySemFileVer }}
steps:
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -94,11 +96,11 @@ jobs:
${{ runner.os }}-licenses-
- run: |
dotnet tool restore
dotnet project-licenses -t -u \
dotnet project-licenses -t -u -m -e \
--packages-filter /Analyzers$/ \
-m -i VdLabel \
--include-project-file \
--manual-package-information manual-package-information.json \
-i VdLabel \
-f licenses
- uses: actions/upload-artifact@v4
with:
Expand Down Expand Up @@ -133,7 +135,7 @@ jobs:
- run: dotnet build VdLabel.Wix -c Release
- uses: actions/upload-artifact@v4
with:
name: VdLabel-*.msi
name: VdLabel-${{ needs.build.outputs.version }}.msi
path: publish\
release:
if: ${{ success() && startsWith(github.ref, 'refs/tags/') }}
Expand Down

0 comments on commit 3e40a7c

Please sign in to comment.