fix: incorrect path
Some checks failed
Release Rai.PacketMediator / preprocess (push) Successful in 2s
Release Rai.PacketMediator / build (push) Successful in 25s
Release Rai.PacketMediator / publish (push) Failing after 24s
Release Rai.PacketMediator / generate-licences (push) Successful in 32s

This commit is contained in:
Timothy Schenk 2024-04-04 16:38:25 +02:00
parent 4dc8fbe845
commit 54e62eddad
Signed by: rainote
SSH key fingerprint: SHA256:pnkNSDwpAnaip00xaZlVFHKKsS7T8UtOomMzvs0yITE

View file

@ -29,6 +29,7 @@ jobs:
run: dotnet restore run: dotnet restore
- name: Build - name: Build
run: | run: |
cd RaiNote.PacketMediator
dotnet build RaiNote.PacketMediator.csproj -c Release dotnet build RaiNote.PacketMediator.csproj -c Release
publish: publish:
@ -48,8 +49,9 @@ jobs:
echo "Extracted version is $VERSION" echo "Extracted version is $VERSION"
echo "VERSION=$VERSION" >> $GITHUB_ENV echo "VERSION=$VERSION" >> $GITHUB_ENV
shell: bash shell: bash
- name: Pack nugets - name: Pack nuget package
run: | run: |
cd RaiNote.PacketMediator
dotnet build RaiNote.PacketMediator.csproj -c Release -p:PackageVersion=${{env.VERSION}} dotnet build RaiNote.PacketMediator.csproj -c Release -p:PackageVersion=${{env.VERSION}}
dotnet pack -c Release -p:PackageVersion=${{env.VERSION}} --output . dotnet pack -c Release -p:PackageVersion=${{env.VERSION}} --output .
- name: Push to NuGet - name: Push to NuGet