Skip to content

Commit

Permalink
Fix pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
filipbekic01 committed Dec 18, 2024
1 parent 0a7557b commit a3bc11a
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 9 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -36,14 +36,6 @@ jobs:
working-directory: backend/ResQueue/ResQueue
run: dotnet build --configuration Release

- name: Pack the NuGet package
working-directory: backend/ResQueue/ResQueue
run: dotnet pack --configuration Release

- name: Push the NuGet package
working-directory: backend/ResQueue/ResQueue
run: dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://nuget.org

- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
Expand All @@ -68,6 +60,14 @@ jobs:
docker manifest push "${DockerRegistry}/${DockerRepository}:${ResQueueImageVersion}"
docker manifest push "${DockerRegistry}/${DockerRepository}:latest"
- name: Pack the NuGet package
working-directory: backend/ResQueue/ResQueue
run: dotnet pack --configuration Release

- name: Push the NuGet package
working-directory: backend/ResQueue/ResQueue
run: dotnet nuget push bin/Release/*.nupkg --api-key ${{ secrets.NUGET_API_KEY }} --source https://nuget.org

DeployImage:
runs-on: ubuntu-latest
env:
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,12 @@

The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).

## [v1.0.11] - 2024-12-18

### Fixed

- GitHub pipeline, version change required

## [v1.0.10] - 2024-12-18

### Changed
Expand Down
2 changes: 1 addition & 1 deletion backend/ResQueue/ResQueue/ResQueue.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

<!-- NuGet package properties -->
<PackageId>ResQueue.MassTransit</PackageId>
<Version>1.0.10</Version>
<Version>1.0.11</Version>
<Authors>Filip Bekić, Miroljub Tomić</Authors>
<Company>ResQueue</Company>
<Description>MassTransit SQL Transport Web UI</Description>
Expand Down

0 comments on commit a3bc11a

Please sign in to comment.