Skip to content

Commit 139fa44

Browse files
committed
refact: fix switched names
1 parent e15ea99 commit 139fa44

File tree

2 files changed

+21
-21
lines changed

2 files changed

+21
-21
lines changed

.github/workflows/build-installer.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -30,34 +30,34 @@ jobs:
3030

3131
- name: Publish for Linux
3232
run: |
33-
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out
33+
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out
3434
3535
- name: Publish for Windows
3636
run: |
37-
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win
37+
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win
3838
3939
- name: Publish for Mac
4040
run: |
41-
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64
42-
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64
41+
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64
42+
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64
4343
4444
- uses: actions/upload-artifact@v4
4545
with:
46-
name: ZXBasicStudio-linux-x64
46+
name: ZXBSInstaller-linux-x64
4747
path: ~/work/ZXBasicStudio/ZXBasicStudio/out/
4848

4949
- uses: actions/upload-artifact@v4
5050
with:
51-
name: ZXBasicStudio-win-x64
51+
name: ZXBSInstaller-win-x64
5252
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-win/
5353

5454
- uses: actions/upload-artifact@v4
5555
with:
56-
name: ZXBasicStudio-osx-x64
56+
name: ZXBSInstaller-osx-x64
5757
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-x64/
5858

5959
- uses: actions/upload-artifact@v4
6060
with:
61-
name: ZXBasicStudio-osx-arm64
61+
name: ZXBSInstaller-osx-arm64
6262
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-arm64/
6363

.github/workflows/build-zxbstudio.yml

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Build ZXBStudio
1+
name: Build ZXB Studio
22

33
on:
44
push:
@@ -30,34 +30,34 @@ jobs:
3030

3131
- name: Publish for Linux
3232
run: |
33-
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out
33+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out
3434
3535
- name: Publish for Windows
3636
run: |
37-
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win
37+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win
3838
3939
- name: Publish for Mac
4040
run: |
41-
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64
42-
dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64
41+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64
42+
dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64
4343
4444
- uses: actions/upload-artifact@v4
4545
with:
46-
name: ZXBSInstaller-linux-x64
47-
path: ~/work/ZXBSInstaller/ZXBSInstaller/out/
46+
name: ZXBasicStudio-linux-x64
47+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out/
4848

4949
- uses: actions/upload-artifact@v4
5050
with:
51-
name: ZXBSInstaller-win-x64
52-
path: ~/work/ZXBSInstaller/ZXBSInstaller/out-win/
51+
name: ZXBasicStudio-win-x64
52+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-win/
5353

5454
- uses: actions/upload-artifact@v4
5555
with:
56-
name: ZXBSInstaller-osx-x64
57-
path: ~/work/ZXBSInstaller/ZXBSInstaller/out-mac-x64/
56+
name: ZXBasicStudio-osx-x64
57+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-x64/
5858

5959
- uses: actions/upload-artifact@v4
6060
with:
61-
name: ZXBSInstaller-osx-arm64
62-
path: ~/work/ZXBSInstaller/ZXBSInstaller/out-mac-arm64/
61+
name: ZXBasicStudio-osx-arm64
62+
path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-arm64/
6363

0 commit comments

Comments
 (0)