Skip to content

Commit d262ae9

Browse files
committed
2 parents a8d1905 + f48e1d4 commit d262ae9

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

.github/workflows/dotnet-desktop.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,17 +60,18 @@ jobs:
6060
done
6161
6262
- name: GIT commit and push overriding conflicts with local changes (verbose)
63+
continue-on-error: true
6364
run: |
6465
git commit -m "Update version to ${{ env.RELEASE_VERSION }}"
6566
git fetch origin
6667
git rebase --strategy-option=theirs origin/main
6768
git push
68-
69+
6970
- name: Build and package
7071
run: |
7172
IFS=$'\n' # Set the Internal Field Separator to newline for reading multi-line variable
7273
for PROJECT in $PROJECTS; do
73-
dotnet package -c Release -o ./nuget "$PROJECT"
74+
dotnet build -c Release -o ./nuget "$PROJECT"
7475
done
7576
7677
- name: Publish to NuGet

src/Moss.NET.Sdk/Moss.NET.Sdk.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<Description>A sdk to build Moss extensions easily</Description>
1010
<PackageProjectUrl>https://github.com/RedTTGMoss/Moss.NET.SDK</PackageProjectUrl>
1111
<RepositoryUrl>https://github.com/RedTTGMoss/Moss.NET.SDK</RepositoryUrl>
12-
<Version>1.1-pre</Version>
12+
<Version>1.2-pre</Version>
1313
<Nullable>enable</Nullable>
1414
</PropertyGroup>
1515

0 commit comments

Comments
 (0)