Skip to content

Commit f9a0f79

Browse files
1 parent b390c53 commit f9a0f79

File tree

3 files changed

+21
-12
lines changed

3 files changed

+21
-12
lines changed

.github/workflows/release-nuget.yml

+3-11
Original file line numberDiff line numberDiff line change
@@ -12,19 +12,11 @@ jobs:
1212
- uses: actions/setup-dotnet@v4
1313
with:
1414
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}
2315
- name: Build
24-
run: dotnet build --configuration Release /p:Version=${VERSION}
16+
run: dotnet build --configuration Release
2517
- name: Pack
2618
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 .
2820
- name: Push
2921
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

zrp/Zwoo.Api.ZRP/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# Zwoo.Api.ZRP

zrp/Zwoo.Api.ZRP/Zwoo.Api.ZRP.csproj

+17-1
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,22 @@
44
<TargetFramework>net8.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<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>
719
</PropertyGroup>
820

9-
</Project>
21+
<ItemGroup>
22+
<None Include="./README.md" Pack="true" PackagePath="/" />
23+
</ItemGroup>
24+
25+
</Project>

0 commit comments

Comments
 (0)