From 5d111b31d815b2b3a11a6a66f98b2c43f5baf2fb Mon Sep 17 00:00:00 2001 From: Timur Zununbekov Date: Fri, 16 Feb 2024 13:17:48 +0600 Subject: [PATCH] Debug package build step --- .github/workflows/e2e.yml | 4 ++++ .github/workflows/release.yml | 9 ++++++--- .github/workflows/unit-tests-and-linters.yml | 6 +++--- 3 files changed, 13 insertions(+), 6 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a4a50de3e6..77f8403f7d 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -3,6 +3,10 @@ on: workflow_run: workflows: [Unit tests and linters] types: [completed] + # # for debug purposes only + # push: + # branches: [ci-migration] + jobs: e2e-tests: diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 724ed968fb..1dd8cf0e18 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -7,6 +7,9 @@ on: push: tags: - "v*" + # for debug purposes only + push: + branches: [ci-migration] env: RELEASE_BUILD: false @@ -15,9 +18,9 @@ env: jobs: build-packages: - if: | - ${{ github.event.workflow_run.conclusion == 'success' }} || - ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') }} + # if: | + # ${{ github.event.workflow_run.conclusion == 'success' }} || + # ${{ github.event_name == 'push' && contains(github.ref, 'refs/tags/') }} runs-on: ubuntu-latest environment: production diff --git a/.github/workflows/unit-tests-and-linters.yml b/.github/workflows/unit-tests-and-linters.yml index e3c7e451ef..7a3bbfcf3e 100644 --- a/.github/workflows/unit-tests-and-linters.yml +++ b/.github/workflows/unit-tests-and-linters.yml @@ -1,9 +1,9 @@ name: Unit tests and linters on: pull_request: - # for debug purposes only - push: - branches: [ci-migration] + # # for debug purposes only + # push: + # branches: [ci-migration] env: GOFLAGS: "-count=1"