Skip to content

Commit

Permalink
Debug package build step
Browse files Browse the repository at this point in the history
  • Loading branch information
tzununbekov committed Feb 16, 2024
1 parent f15fdbd commit 5d111b3
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 6 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 6 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ on:
push:
tags:
- "v*"
# for debug purposes only
push:
branches: [ci-migration]

env:
RELEASE_BUILD: false
Expand All @@ -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

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/unit-tests-and-linters.yml
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 5d111b3

Please sign in to comment.