Skip to content

Commit

Permalink
尝试打出私有的包
Browse files Browse the repository at this point in the history
  • Loading branch information
lindexi committed Dec 6, 2023
1 parent e1d2cfe commit e566125
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions .github/workflows/Build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,18 @@ jobs:
run: .\build.cmd -pack -ci -configuration Debug -prepareMachine /p:Platform=x86
- name: Build CustomWPF
run: dotnet build CustomWpf
- name: Pack CustomWPF
run: dotnet pack CustomWpf --no-build
- name: Push
uses: actions/upload-artifact@v1
with:
name: WPF_Debug
path: ./artifacts/packages/Debug/NonShipping
- name: Push
uses: actions/upload-artifact@v1
with:
name: WPF_Debug_Nuget
path: ./CustomWpf/bin

BuildRelease:

Expand All @@ -33,8 +40,10 @@ jobs:
run: .\build.cmd -pack -ci -configuration Release -prepareMachine /p:Platform=x86
- name: Build CustomWPF
run: dotnet build CustomWpf -c Release
- name: Pack CustomWPF
run: dotnet pack CustomWpf --no-build -c Release
- name: Push
uses: actions/upload-artifact@v1
with:
name: WPF_Release
path: ./artifacts/packages/Release/NonShipping
name: WPF_Release_Nuget
path: ./CustomWpf/bin
2 changes: 1 addition & 1 deletion CustomWpf/build/Version.props
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<Project>
<PropertyGroup>
<Version>6.0.4-alpha01-202205a6c7dca6</Version>
<Version>6.0.4-alpha07-test03</Version>
</PropertyGroup>
</Project>

0 comments on commit e566125

Please sign in to comment.