Skip to content

Commit df6487a

Browse files
committed
trying to fix ci triggers
1 parent 87e82fe commit df6487a

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

.github/workflows/container_apps_chat_ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- 'src/container_apps/Jordnaer.Chat/**'
77
- 'tests/container_apps/Jordnaer.Chat/**'
88
- '.github/workflows/container_apps_chat_ci.yml'
9-
tags-ignore:
10-
- 'release-chat-v*.*.*'
9+
tags:
10+
- '!release-chat-v*.*.*'
1111
workflow_dispatch:
1212

1313
# Needed by dorny/test-reporter@v1

.github/workflows/website_backend_ci.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ on:
66
- 'src/web/**'
77
- 'tests/web/**'
88
- '.github/workflows/website_backend_ci.yml'
9-
tags-ignore:
10-
- "release-website-v*.*.*"
9+
tags:
10+
- "!release-website-v*.*.*"
1111
workflow_dispatch:
1212

1313
# Needed by dorny/test-reporter@v1
@@ -28,7 +28,6 @@ jobs:
2828
uses: actions/setup-dotnet@v3
2929
with:
3030
dotnet-version: '7.x'
31-
include-prerelease: true
3231

3332
- name: Test
3433
# Dependabot cannot access secrets, so we disable this step for Dependabot

Jordnaer.sln

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,14 @@ Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution
1515
ProjectSection(SolutionItems) = preProject
1616
.editorconfig = .editorconfig
1717
.gitignore = .gitignore
18+
.github\workflows\container_apps_chat_cd.yml = .github\workflows\container_apps_chat_cd.yml
19+
.github\workflows\container_apps_chat_ci.yml = .github\workflows\container_apps_chat_ci.yml
1820
Directory.Build.props = Directory.Build.props
21+
.github\workflows\github-release.yml = .github\workflows\github-release.yml
22+
.github\workflows\lighthouse.yml = .github\workflows\lighthouse.yml
1923
README.md = README.md
24+
.github\workflows\website_backend_ci.yml = .github\workflows\website_backend_ci.yml
25+
.github\workflows\website_cd.yml = .github\workflows\website_cd.yml
2026
EndProjectSection
2127
EndProject
2228
Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "tests", "tests", "{3F3B23F8-EA95-44B5-B907-5E772A2660E2}"

tests/web/Jordnaer.Server.Tests/JordnaerWebApplicationFactory.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ protected override void ConfigureWebHost(IWebHostBuilder builder)
3535
services.RemoveAll<DbContext>();
3636

3737
services.AddSqlServer<JordnaerDbContext>(Container.GetConnectionString());
38-
3938
});
4039

4140
builder.ConfigureLogging(loggingBuilder => loggingBuilder.ClearProviders());

0 commit comments

Comments
 (0)