Skip to content

Commit 4d4d444

Browse files
committed
fix pipeline
1 parent 0b84e5a commit 4d4d444

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
- name: Restore
4242
run: dotnet restore cge-tools.sln
4343

44-
- name: Publish (Linux)
45-
if: runner.os == 'Linux'
44+
- name: Publish (Linux/macOS)
45+
if: runner.os != 'Windows'
4646
env:
4747
RID: ${{ matrix.rid }}
4848
run: |
@@ -51,8 +51,8 @@ jobs:
5151
dotnet publish CftConverter/CftConverter.csproj -c Release -r "$RID" --self-contained false -o "dist/$RID/cft-converter"
5252
dotnet publish VbmConverter/VbmConverter.csproj -c Release -r "$RID" --self-contained false -o "dist/$RID/vbm-converter"
5353
54-
- name: Package (Linux)
55-
if: runner.os == 'Linux'
54+
- name: Package (Linux/macOS)
55+
if: runner.os != 'Windows'
5656
env:
5757
RID: ${{ matrix.rid }}
5858
run: |

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -42,8 +42,8 @@ jobs:
4242
- name: Restore
4343
run: dotnet restore cge-tools.sln
4444

45-
- name: Publish (Linux)
46-
if: runner.os == 'Linux'
45+
- name: Publish (Linux/macOS)
46+
if: runner.os != 'Windows'
4747
env:
4848
RID: ${{ matrix.rid }}
4949
run: |
@@ -52,8 +52,8 @@ jobs:
5252
dotnet publish CftConverter/CftConverter.csproj -c Release -r "$RID" --self-contained false -o "dist/$RID/cft-converter"
5353
dotnet publish VbmConverter/VbmConverter.csproj -c Release -r "$RID" --self-contained false -o "dist/$RID/vbm-converter"
5454
55-
- name: Package (Linux)
56-
if: runner.os == 'Linux'
55+
- name: Package (Linux/macOS)
56+
if: runner.os != 'Windows'
5757
env:
5858
RID: ${{ matrix.rid }}
5959
run: |

0 commit comments

Comments
 (0)