Skip to content

Commit a54ee61

Browse files
committed
fix ci/cd
1 parent dd8e98a commit a54ee61

File tree

5 files changed

+13
-7
lines changed

5 files changed

+13
-7
lines changed

.github/workflows/core-cd.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Core CD
22

33
on:
44
push:
5-
tags: '*'
5+
tags:
6+
- '*'
67

78
jobs:
89
release-nuget:
@@ -11,7 +12,7 @@ jobs:
1112
- uses: actions/checkout@v4
1213
- uses: actions/setup-dotnet@v4
1314
with:
14-
dotnet-version: '6.x'
15+
dotnet-version: '9.x'
1516

1617
- name: Fetch version
1718
run: echo "VERSION=${GITHUB_REF/refs\/tags\/v/}" >> $GITHUB_ENV

.github/workflows/interface-cd.yaml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ name: Interface CD
22

33
on:
44
push:
5-
tags: '*'
5+
tags:
6+
- '*'
67

78
jobs:
89
build-interface:
@@ -11,7 +12,7 @@ jobs:
1112
- uses: actions/checkout@v4
1213
- uses: actions/setup-dotnet@v4
1314
with:
14-
dotnet-version: '6.x'
15+
dotnet-version: '9.x'
1516

1617
- name: Restore packages
1718
run: dotnet restore Interface/FEZRepacker.Interface.csproj

.github/workflows/interface-ci.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,10 @@ name: Interface CI
22

33
on:
44
push:
5-
branches: '**'
6-
tags-ignore: '**'
5+
branches:
6+
- '**'
7+
tags-ignore:
8+
- '**'
79
paths-ignore:
810
- '.github/*'
911
- '.github/workflows/**.yml'
@@ -20,7 +22,7 @@ jobs:
2022
- uses: actions/checkout@v4
2123
- uses: actions/setup-dotnet@v4
2224
with:
23-
dotnet-version: '6.x'
25+
dotnet-version: '9.x'
2426

2527
- name: Restore packages
2628
run: dotnet restore Interface/FEZRepacker.Interface.csproj

Interface/FEZRepacker.Interface.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<OutputType>Exe</OutputType>
55
<TargetFramework>net6.0</TargetFramework>
66
<AssemblyName>$(SolutionName)</AssemblyName>
7+
<LangVersion>latest</LangVersion>
78

89
<ImplicitUsings>enable</ImplicitUsings>
910
<Nullable>enable</Nullable>

Tests/FEZRepacker.Tests.csproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
<TargetFramework>net6.0</TargetFramework>
55
<ImplicitUsings>enable</ImplicitUsings>
66
<Nullable>enable</Nullable>
7+
<LangVersion>latest</LangVersion>
78

89
<IsPackable>false</IsPackable>
910
<IsTestProject>true</IsTestProject>

0 commit comments

Comments
 (0)