Skip to content

Commit 0aaed66

Browse files
author
agile.zhou
committed
fix conflic
2 parents 146b7bb + fe86291 commit 0aaed66

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+412
-209
lines changed

.github/workflows/arm32.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup .NET Core
4242
uses: actions/setup-dotnet@v1
4343
with:
44-
dotnet-version: 6.0.100
44+
dotnet-version: 8.0.*
4545
- name: Install dependencies
4646
run: dotnet restore
4747
- name: Build

.github/workflows/arm64.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup .NET Core
4141
uses: actions/setup-dotnet@v1
4242
with:
43-
dotnet-version: 6.0.100
43+
dotnet-version: 8.0.*
4444
- name: Install dependencies
4545
run: dotnet restore
4646
- name: Build

.github/workflows/master-ci.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
- '**/*.yml'
99
pull_request:
1010
branches: [ master ]
11+
workflow_dispatch:
1112

1213
jobs:
1314
build-reactapp:
@@ -41,7 +42,7 @@ jobs:
4142
- name: Setup .NET Core
4243
uses: actions/setup-dotnet@v1
4344
with:
44-
dotnet-version: 6.0.100
45+
dotnet-version: 8.0.*
4546
- name: Install dependencies
4647
run: dotnet restore
4748
- name: Build

.github/workflows/mysqlconnector.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
- name: Setup .NET Core
4242
uses: actions/setup-dotnet@v1
4343
with:
44-
dotnet-version: 6.0.100
44+
dotnet-version: 8.0.*
4545
- name: Install dependencies
4646
run: dotnet restore
4747
- name: Build

.github/workflows/preview-dotnet.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
- name: Setup .NET Core
2424
uses: actions/setup-dotnet@v1
2525
with:
26-
dotnet-version: 6.0.100
26+
dotnet-version: 8.0.*
2727
- name: Install dependencies
2828
run: dotnet restore
2929
- name: Build

.github/workflows/publish.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,8 @@ on:
66
paths-ignore:
77
- '**/*.md'
88
- '**/*.yml'
9-
9+
workflow_dispatch:
10+
1011
jobs:
1112
build-reactapp:
1213
runs-on: ubuntu-latest
@@ -39,7 +40,7 @@ jobs:
3940
- name: Setup .NET Core
4041
uses: actions/setup-dotnet@v1
4142
with:
42-
dotnet-version: 6.0.100
43+
dotnet-version: 8.0.*
4344
- name: Install dependencies
4445
run: dotnet restore
4546
- name: Build

.github/workflows/release-xxx.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- '**/*.yml'
88
tags:
99
- 'v-*'
10-
10+
workflow_dispatch:
1111
jobs:
1212
build-reactapp:
1313
runs-on: ubuntu-latest
@@ -40,7 +40,7 @@ jobs:
4040
- name: Setup .NET Core
4141
uses: actions/setup-dotnet@v1
4242
with:
43-
dotnet-version: 6.0.100
43+
dotnet-version: 8.0.*
4444
- name: Install dependencies
4545
run: dotnet restore
4646
- name: Build
@@ -50,10 +50,10 @@ jobs:
5050
name: agileconfig-ui
5151
path: src/AgileConfig.Server.Apisite/wwwroot/ui
5252
- name: build server release xxx
53-
run: dotnet publish AgileConfig.Server.Apisite/AgileConfig.Server.Apisite.csproj -c Release
53+
run: dotnet publish src/AgileConfig.Server.Apisite/AgileConfig.Server.Apisite.csproj -c Release
5454
- uses: vimtor/action-zip@v1
5555
with:
56-
files: AgileConfig.Server.Apisite/bin/Release/net6.0/publish/
56+
files: src/AgileConfig.Server.Apisite/bin/Release/net8.0/publish/
5757
dest: agileconfig_server_deploy.zip
5858
- name: create release
5959
uses: ncipollo/release-action@v1

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change log
22
------------------------------
3+
[1.8.0]
4+
* 升级到 .NET8
5+
6+
[1.7.2]
7+
* 修复 appid 为中文时无法获取配置的问题
8+
9+
[1.7.1]
10+
* 修复在严格区分大小写的 SQLServer 上建表失败的问题
11+
312
[1.7.0]
413
* 支持 SSO 登录
514

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
FROM mcr.microsoft.com/dotnet/aspnet:6.0-focal-arm64v8 AS base
1+
FROM mcr.microsoft.com/dotnet/aspnet:8.0-jammy-arm64v8 AS base
22
WORKDIR /app
33
EXPOSE 5000
44

5-
FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build
5+
FROM mcr.microsoft.com/dotnet/sdk:8.0 AS build
66
WORKDIR /src
77
COPY ["src/AgileConfig.Server.Apisite/AgileConfig.Server.Apisite.csproj", "AgileConfig.Server.Apisite/"]
88
COPY ["src/AgileConfig.Server.Data.Entity/AgileConfig.Server.Data.Entity.csproj", "AgileConfig.Server.Data.Entity/"]

docker-compose.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ services:
66
- "15000:5000"
77
networks:
88
- net0
9+
security_opt:
10+
- seccomp=unconfined
911
volumes:
1012
- /etc/localtime:/etc/localtime
1113
environment:
@@ -20,6 +22,8 @@ services:
2022
- "15001:5000"
2123
networks:
2224
- net0
25+
security_opt:
26+
- seccomp=unconfined
2327
volumes:
2428
- /etc/localtime:/etc/localtime
2529
environment:
@@ -35,6 +39,8 @@ services:
3539
- "15002:5000"
3640
networks:
3741
- net0
42+
security_opt:
43+
- seccomp=unconfined
3844
volumes:
3945
- /etc/localtime:/etc/localtime
4046
environment:

0 commit comments

Comments
 (0)