From 9864adad18609c463107e2eec942ac160c64589e Mon Sep 17 00:00:00 2001 From: Anton Matosov Date: Wed, 29 Jun 2022 10:20:12 -0700 Subject: [PATCH] disable release step and run release ci fo PRs for testing --- .github/workflows/release.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 255676a..f6e3710 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -4,6 +4,9 @@ on: push: tags: ["*"] + pull_request: + branches: + - master jobs: windows: runs-on: windows-latest @@ -76,6 +79,7 @@ jobs: path: target/release/foreman release: + if: ${{ false }} runs-on: ubuntu-latest timeout-minutes: 15 needs: ['windows', 'macos', 'linux']