diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c08c477..5a8054a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -64,7 +64,7 @@ jobs: build-linux-appimage: name: Build Linux (AppImage) needs: [lint, test] - if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) + if: github.event_name == 'push' || startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) runs-on: ubuntu-latest timeout-minutes: 30 steps: @@ -111,7 +111,7 @@ jobs: build-linux-deb: name: Build Linux (.deb) needs: [lint, test] - if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) + if: github.event_name == 'push' || startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) runs-on: ubuntu-latest timeout-minutes: 15 steps: @@ -134,7 +134,7 @@ jobs: build-windows: name: Build Windows (Installer) needs: [lint, test] - if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) + if: github.event_name == 'push' || startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) runs-on: windows-latest timeout-minutes: 30 defaults: @@ -164,7 +164,7 @@ jobs: build-macos: name: Build macOS (DMG) needs: [lint, test] - if: startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) + if: github.event_name == 'push' || startsWith(github.ref, 'refs/tags/v') || (github.event_name == 'workflow_dispatch' && inputs.build_artifacts) runs-on: macos-latest timeout-minutes: 30 steps: