File tree Expand file tree Collapse file tree 3 files changed +33
-3
lines changed
.github/ISSUE_TEMPLATE/workflows Expand file tree Collapse file tree 3 files changed +33
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : Nuget Publish
2
+
3
+ on :
4
+ rekease :
5
+ types : [ published ]
6
+ paths :
7
+ - " **"
8
+
9
+ jobs :
10
+
11
+ version :
12
+ name : Nuget Publish
13
+ runs-on : ubuntu-latest
14
+ steps :
15
+ - uses : actions/checkout@v3
16
+ with :
17
+ fetch-depth : 0
18
+ - name : Setup .NET
19
+ uses : actions/setup-dotnet@v3
20
+ with :
21
+ dotnet-version : 8.0.x
22
+ - name : Restore dependencies
23
+ run : dotnet restore
24
+ - name : Build
25
+ run : dotnet build --no-restore
26
+ - name : Build Package
27
+ run : dotnet pack --output nupkgs --configuration Release -p PackageVersion=1.0.${{ github.run_number }}
28
+ - name : Push to Nuget
29
+ run : dotnet nuget push "nupkgs/*.nupkg" -s https://api.nuget.org/v3/index.json -k ${{secrets.NUGET_API_KEY}} --skip-duplicate
Original file line number Diff line number Diff line change 17
17
.DS_Store
18
18
.fleet
19
19
.idea
20
+ bin
21
+ obj
20
22
21
23
# Local env files
22
24
.env
Original file line number Diff line number Diff line change 2
2
3
3
<PropertyGroup >
4
4
<PackageType >Template</PackageType >
5
- <Version >1.0.0 </Version >
5
+ <Version >1.0.1 </Version >
6
6
<TargetFramework >net8.0</TargetFramework >
7
7
<PackageId >Sajan.Abp.Vue.Template</PackageId >
8
8
<Title >Abp Vue Template</Title >
20
20
</PropertyGroup >
21
21
22
22
<ItemGroup >
23
- <Compile Remove =" **\*" />
24
- <Content Include =" \**\*" Exclude =" \**\bin\**;\**\obj\**;\node_modules;\**\node_modules\**;\.nuxt\**;\.output\**;" />
23
+ <Content Include =" .\**\*" Exclude =" **\bin\**;**\obj\**;node_modules;**\node_modules\**;" />
25
24
<Content Include =" README.md" Pack =" true" PackagePath =" \" />
26
25
</ItemGroup >
27
26
You can’t perform that action at this time.
0 commit comments