From be2b2cd4076cad9fd6d5bb7017007c2155c76a68 Mon Sep 17 00:00:00 2001 From: DanielSvoboda Date: Wed, 18 Sep 2024 01:29:20 -0300 Subject: [PATCH] + create actions for any branch, and pre-release only for MAIN --- .github/workflows/build.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 1eda4d389..e34571378 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -5,9 +5,9 @@ name: Build and Release on: push: - branches: [ "main" ] + branches: [ "*" ] pull_request: - branches: [ "main" ] + branches: [ "*" ] env: BUILD_TYPE: Release @@ -346,7 +346,7 @@ jobs: path: Shadps4-qt.AppImage pre-release: - if: github.event_name == 'push' + if: github.ref == 'refs/heads/main' && github.event_name == 'push' needs: [get-info, windows-sdl, windows-qt, macos-sdl, macos-qt, linux-sdl, linux-qt] runs-on: ubuntu-latest steps: