Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -37,13 +37,13 @@ jobs:

markup-lint:
name: Markup
uses: devpro/github-workflow-parts/.github/workflows/reusable-markup-lint.yml@62dbf6e833e49230ab34ef3c44093ebb727a095f
uses: devpro/github-workflow-parts/.github/workflows/reusable-markup-lint.yml@5a5d1cd0a00c94ebec1e096e9086f2b88cc5eb96

code-quality:
name: Code
needs: git-check
if: needs.git-check.outputs.app_changed == 'true' || (github.event_name == 'workflow_dispatch' && inputs.run-code-quality)
uses: devpro/github-workflow-parts/.github/workflows/reusable-dotnet-quality.yml@62dbf6e833e49230ab34ef3c44093ebb727a095f
uses: devpro/github-workflow-parts/.github/workflows/reusable-dotnet-quality.yml@5a5d1cd0a00c94ebec1e096e9086f2b88cc5eb96
with:
custom-commands: |
./scripts/mongodb-install.sh
Expand All @@ -62,7 +62,7 @@ jobs:
sonar-organization: ${{ vars.SONAR_ORG }}
sonar-project-key: ${{ vars.SONAR_PROJECT_KEY }}
sonar-project-name: Keeptrack
workflow-parts-version: 62dbf6e833e49230ab34ef3c44093ebb727a095f
workflow-parts-version: 5a5d1cd0a00c94ebec1e096e9086f2b88cc5eb96
secrets:
fossa-api-key: ${{ secrets.FOSSA_API_KEY }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
Expand Down Expand Up @@ -90,7 +90,7 @@ jobs:
- name: "Web Api"
image-name: "keeptrack-webapi"
image-definition: "src/WebApi/Dockerfile"
uses: devpro/github-workflow-parts/.github/workflows/reusable-container-scan.yml@62dbf6e833e49230ab34ef3c44093ebb727a095f
uses: devpro/github-workflow-parts/.github/workflows/reusable-container-scan.yml@5a5d1cd0a00c94ebec1e096e9086f2b88cc5eb96
with:
image-definition: ${{ matrix.image-definition }}
image-name: ${{ matrix.image-name }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pkg.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
permissions:
id-token: write
contents: read
uses: devpro/github-workflow-parts/.github/workflows/reusable-container-publication.yml@4f3152777635eb3bcf1ee21db103d70f790ff1cb
uses: devpro/github-workflow-parts/.github/workflows/reusable-container-publication.yml@5a5d1cd0a00c94ebec1e096e9086f2b88cc5eb96
with:
create-latest: ${{ github.ref_name == 'main' }}
image-definition: ${{ matrix.image-definition }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ namespace Keeptrack.BlazorApp.Components.Inventory.Clients;
public sealed class MusicAlbumApiClient(HttpClient http)
: InventoryApiClientBase<MusicAlbumDto>(http)
{
protected override string ApiResourceName => "/api/movies";
protected override string ApiResourceName => "/api/music-albums";
}
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ internal static void AddMongoDbInfrastructure(this IServiceCollection services,
services.TryAddScoped<Domain.Repositories.ICarRepository, CarRepository>();
services.TryAddScoped<Domain.Repositories.ICarHistoryRepository, CarHistoryRepository>();
services.TryAddScoped<Domain.Repositories.IMovieRepository, MovieRepository>();
services.TryAddScoped<Domain.Repositories.IMusicAlbumRepository, MusicAlbumRepository>();
services.TryAddScoped<Domain.Repositories.ITvShowRepository, TvShowRepository>();
services.TryAddScoped<Domain.Repositories.IVideoGameRepository, VideoGameRepository>();
}
Expand Down
Loading