From 139fa447129234156e8eea8edc20b58f3697e268 Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Sat, 7 Feb 2026 13:57:39 +0100 Subject: [PATCH 1/2] refact: fix switched names --- .github/workflows/build-installer.yml | 16 ++++++++-------- .github/workflows/build-zxbstudio.yml | 26 +++++++++++++------------- 2 files changed, 21 insertions(+), 21 deletions(-) diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 457e180..7a39f0e 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -30,34 +30,34 @@ jobs: - name: Publish for Linux run: | - dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out + dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out - name: Publish for Windows run: | - dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win + dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win - name: Publish for Mac run: | - dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64 - dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64 + dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64 + dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64 - uses: actions/upload-artifact@v4 with: - name: ZXBasicStudio-linux-x64 + name: ZXBSInstaller-linux-x64 path: ~/work/ZXBasicStudio/ZXBasicStudio/out/ - uses: actions/upload-artifact@v4 with: - name: ZXBasicStudio-win-x64 + name: ZXBSInstaller-win-x64 path: ~/work/ZXBasicStudio/ZXBasicStudio/out-win/ - uses: actions/upload-artifact@v4 with: - name: ZXBasicStudio-osx-x64 + name: ZXBSInstaller-osx-x64 path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-x64/ - uses: actions/upload-artifact@v4 with: - name: ZXBasicStudio-osx-arm64 + name: ZXBSInstaller-osx-arm64 path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-arm64/ \ No newline at end of file diff --git a/.github/workflows/build-zxbstudio.yml b/.github/workflows/build-zxbstudio.yml index f2714c4..36a4e18 100644 --- a/.github/workflows/build-zxbstudio.yml +++ b/.github/workflows/build-zxbstudio.yml @@ -1,4 +1,4 @@ -name: Build ZXBStudio +name: Build ZXB Studio on: push: @@ -30,34 +30,34 @@ jobs: - name: Publish for Linux run: | - dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out + dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r linux-x64 --self-contained true -p:PublishSingleFile=true -o out - name: Publish for Windows run: | - dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win + dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r win-x64 --self-contained true -p:PublishSingleFile=true -o out-win - name: Publish for Mac run: | - dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64 - dotnet publish ZXBSInstaller/ZXBSInstaller.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64 + dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-x64 --self-contained true -p:PublishSingleFile=true -o out-mac-x64 + dotnet publish ZXBStudio/ZXBasicStudio.csproj -c Release -r osx-arm64 --self-contained true -p:PublishSingleFile=true -o out-mac-arm64 - uses: actions/upload-artifact@v4 with: - name: ZXBSInstaller-linux-x64 - path: ~/work/ZXBSInstaller/ZXBSInstaller/out/ + name: ZXBasicStudio-linux-x64 + path: ~/work/ZXBasicStudio/ZXBasicStudio/out/ - uses: actions/upload-artifact@v4 with: - name: ZXBSInstaller-win-x64 - path: ~/work/ZXBSInstaller/ZXBSInstaller/out-win/ + name: ZXBasicStudio-win-x64 + path: ~/work/ZXBasicStudio/ZXBasicStudio/out-win/ - uses: actions/upload-artifact@v4 with: - name: ZXBSInstaller-osx-x64 - path: ~/work/ZXBSInstaller/ZXBSInstaller/out-mac-x64/ + name: ZXBasicStudio-osx-x64 + path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-x64/ - uses: actions/upload-artifact@v4 with: - name: ZXBSInstaller-osx-arm64 - path: ~/work/ZXBSInstaller/ZXBSInstaller/out-mac-arm64/ + name: ZXBasicStudio-osx-arm64 + path: ~/work/ZXBasicStudio/ZXBasicStudio/out-mac-arm64/ \ No newline at end of file From 9058e3241dc17caf71c0928a587a0c002e6ea1ed Mon Sep 17 00:00:00 2001 From: Jose Rodriguez Date: Sat, 7 Feb 2026 15:55:38 +0100 Subject: [PATCH 2/2] Refact: update pull requests event --- .github/workflows/build-installer.yml | 2 ++ .github/workflows/build-zxbstudio.yml | 2 ++ 2 files changed, 4 insertions(+) diff --git a/.github/workflows/build-installer.yml b/.github/workflows/build-installer.yml index 7a39f0e..f261889 100644 --- a/.github/workflows/build-installer.yml +++ b/.github/workflows/build-installer.yml @@ -2,6 +2,8 @@ name: Build ZXBInstaller on: push: + + workflow_dispatch: jobs: build: diff --git a/.github/workflows/build-zxbstudio.yml b/.github/workflows/build-zxbstudio.yml index 36a4e18..34ec5d1 100644 --- a/.github/workflows/build-zxbstudio.yml +++ b/.github/workflows/build-zxbstudio.yml @@ -2,6 +2,8 @@ name: Build ZXB Studio on: push: + + workflow_dispatch: jobs: build: