File tree 3 files changed +21
-12
lines changed
3 files changed +21
-12
lines changed Original file line number Diff line number Diff line change @@ -12,19 +12,11 @@ jobs:
12
12
- uses : actions/setup-dotnet@v4
13
13
with :
14
14
dotnet-version : " 9"
15
- - name : Verify commit exists in origin/main
16
- run : |
17
- git fetch --no-tags --prune --depth=1 origin +refs/heads/*:refs/remotes/origin/*
18
- git branch --remote --contains | grep origin/main
19
- - name : Set VERSION variable from tag
20
- run : echo "VERSION=${GITHUB_REF/refs\/tags\/Zwoo\.Api\.ZRP\@v/}" >> $GITHUB_ENV
21
- - name : Log version
22
- run : echo ${VERSION}
23
15
- name : Build
24
- run : dotnet build --configuration Release /p:Version=${VERSION}
16
+ run : dotnet build --configuration Release
25
17
- name : Pack
26
18
working-directory : zrp/Zwoo.Api.ZRP
27
- run : dotnet pack --configuration Release /p:Version=${VERSION} --no-build --output .
19
+ run : dotnet pack --configuration Release --no-build --output .
28
20
- name : Push
29
21
working-directory : zrp/Zwoo.Api.ZRP
30
- run : dotnet nuget push ZWoo .Api.ZRP.${VERSION} .nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
22
+ run : dotnet nuget push Zwoo .Api.ZRP.* .nupkg -k ${{ secrets.NUGET_API_KEY }} -s https://api.nuget.org/v3/index.json
Original file line number Diff line number Diff line change
1
+ # Zwoo.Api.ZRP
Original file line number Diff line number Diff line change 4
4
<TargetFramework >net8.0</TargetFramework >
5
5
<ImplicitUsings >enable</ImplicitUsings >
6
6
<Nullable >enable</Nullable >
7
+ <Version >0.0.1</Version >
8
+ <PackageId >Zwoo.Api.ZRP</PackageId >
9
+ <RootNamespace >Zwoo.Api.ZRP</RootNamespace >
10
+
11
+ <Authors >Fabian Kachlock</Authors >
12
+ <PackageLicenseExpression >MIT</PackageLicenseExpression >
13
+ <PackageReadmeFile >README.md</PackageReadmeFile >
14
+ <Description >A implementation of the zwoo request protocol</Description >
15
+ <Copyright >Fabian Kachlock 2024</Copyright >
16
+ <PackageProjectUrl >
17
+ https://github.com/zwoo-hq/api/tree/main/zrp/Zwoo.Api.ZRP</PackageProjectUrl >
18
+ <RepositoryUrl >https://github.com/zwoo-hq/api.git</RepositoryUrl >
7
19
</PropertyGroup >
8
20
9
- </Project >
21
+ <ItemGroup >
22
+ <None Include =" ./README.md" Pack =" true" PackagePath =" /" />
23
+ </ItemGroup >
24
+
25
+ </Project >
You can’t perform that action at this time.
0 commit comments