Skip to content
This repository has been archived by the owner on Dec 20, 2023. It is now read-only.

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <[email protected]>
  • Loading branch information
pingsutw committed Apr 21, 2023
1 parent 5953986 commit 43f5bde
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
name: Checks Flyte Components

on: push
on:
push:
branches:
- master
pull_request:

env:
GO_VERSION: "1.19"
Expand Down Expand Up @@ -257,7 +261,7 @@ jobs:

bump_version:
needs: changes
if: ${{ needs.changes.outputs.packages != '[]' && false }}
if: ${{ needs.changes.outputs.packages != '[]' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
outputs:
version: ${{ steps.bump_version.outputs.tag }}
Expand Down Expand Up @@ -307,7 +311,7 @@ jobs:

bump_component_version:
needs: [ changes, bump_version, goreleaser ]
if: ${{ needs.changes.outputs.packages != '[]' }} && ${{ github.event_name != 'pull_request' }}
if: ${{ needs.changes.outputs.packages != '[]' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
Expand Down

0 comments on commit 43f5bde

Please sign in to comment.