Skip to content

Commit

Permalink
publish.yml aktualisieren
Browse files Browse the repository at this point in the history
  • Loading branch information
MPapst authored Jul 31, 2024
1 parent 88bbd0c commit 9123b38
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,6 @@ jobs:
- name: Use Nerdbank.GitVersioning to get version
run: nbgv get-version

- name: Set version environment variables
id: nbgv
run: echo "##[set-env name=VERSION]$(nbgv get-version -v)"

- name: Restore dependencies
run: dotnet restore

Expand All @@ -42,22 +38,22 @@ jobs:
run: dotnet test --no-build --verbosity normal --configuration Release

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore/Papst.EventStore.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore/Papst.EventStore.csproj --no-build --configuration Release --output ./artifacts

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore.Aggregation.EventRegistration/Papst.EventStore.Aggregation.EventRegistration.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore.Aggregation.EventRegistration/Papst.EventStore.Aggregation.EventRegistration.csproj --no-build --configuration Release --output ./artifacts

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore.CodeGeneration/Papst.EventStore.CodeGeneration.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore.CodeGeneration/Papst.EventStore.CodeGeneration.csproj --no-build --configuration Release --output ./artifacts

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore.AzureCosmos/Papst.EventStore.AzureCosmos.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore.AzureCosmos/Papst.EventStore.AzureCosmos.csproj --no-build --configuration Release --output ./artifacts

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore.EntityFrameworkCore/Papst.EventStore.EntityFrameworkCore.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore.EntityFrameworkCore/Papst.EventStore.EntityFrameworkCore.csproj --no-build --configuration Release --output ./artifacts

- name: Pack Papst.EventStore project
run: dotnet pack src/Papst.EventStore.FileSystem/Papst.EventStore.FileSystem.csproj --no-build --configuration Release --output ./artifacts /p:Version=${{ env.VERSION }}
run: dotnet pack src/Papst.EventStore.FileSystem/Papst.EventStore.FileSystem.csproj --no-build --configuration Release --output ./artifacts

- name: List results
run: ls ./artifacts
Expand Down

0 comments on commit 9123b38

Please sign in to comment.