Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/master' into wip
Browse files Browse the repository at this point in the history
  • Loading branch information
thebentern committed Jul 9, 2023
2 parents 68c31f3 + cad7745 commit 40b531f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
run: dotnet restore

- name: Build
run: dotnet build --no-restore
run: dotnet build ./Meshtastic.Cli/Meshtastic.Cli.csproj --no-restore

test:
if: ${{ github.event_name != 'workflow_dispatch' }}
Expand Down Expand Up @@ -95,8 +95,8 @@ jobs:
run: dotnet restore
- name: Build solution and generate NuGet package
run: |
dotnet build -c Release -p:AssemblyVersion=${{ steps.version.outputs.version }} -p:Version=${{ steps.version.outputs.version }}
dotnet pack -c Release -p:AssemblyVersion=${{ steps.version.outputs.version }} -p:Version=${{ steps.version.outputs.version }}
dotnet build -c Release -p:AssemblyVersion=${{ steps.version.outputs.version }} -p:Version=${{ steps.version.outputs.version }} ./Meshtastic.Cli/Meshtastic.Cli.csproj
dotnet pack -c Release -p:AssemblyVersion=${{ steps.version.outputs.version }} -p:Version=${{ steps.version.outputs.version }} ./Meshtastic.Cli/Meshtastic.Cli.csproj
- name: Publish package to nuget
run: dotnet nuget push ./**/Meshtastic.Cli.*.nupkg --skip-duplicate -k ${{secrets.NUGET_TOKEN}} --source https://api.nuget.org/v3/index.json
Expand Down
2 changes: 1 addition & 1 deletion version.properties
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[VERSION]
major = 1
minor = 0
build = 26
build = 29

0 comments on commit 40b531f

Please sign in to comment.