Skip to content

Commit

Permalink
test ci
Browse files Browse the repository at this point in the history
Signed-off-by: Kevin Su <pingsutw@apache.org>
  • Loading branch information
pingsutw committed Apr 20, 2023
1 parent 2371f60 commit bf346e5
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:

bump_version:
needs: changes
if: ${{ needs.changes.outputs.packages != '[]' || github.event_name != 'pull_request' }}
if: ${{ needs.changes.outputs.packages != '[]' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
outputs:
version: ${{ steps.bump_version.outputs.tag }}
Expand All @@ -272,7 +272,7 @@ jobs:
id: bump_version
uses: anothrNick/github-tag-action@1.36.0
env:
GITHUB_TOKEN: ${{ secrets.FLYTE_BOT_PAT }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
WITH_V: true
DEFAULT_BUMP: patch
RELEASE_BRANCHES: ${{ steps.extract_branch.outputs.branch_name }}
Expand Down Expand Up @@ -307,7 +307,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
5 changes: 2 additions & 3 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
module github.com/pingsutw/flyte-monorepo
module github.com/flyteorg/flyte

go 1.19

require (
github.com/flyteorg/datacatalog v1.0.44
github.com/flyteorg/flyte v1.5.0
github.com/flyteorg/flyteadmin v1.1.88
github.com/flyteorg/flytepropeller v1.1.76
github.com/flyteorg/flytepropeller v1.1.77
github.com/flyteorg/flytestdlib v1.0.16
github.com/golang/glog v1.0.0
github.com/spf13/cobra v1.4.0
Expand Down
6 changes: 2 additions & 4 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -363,16 +363,14 @@ github.com/felixge/httpsnoop v1.0.1 h1:lvB5Jl89CsZtGIWuTcDM1E/vkVs49/Ml7JJe07l8S
github.com/felixge/httpsnoop v1.0.1/go.mod h1:m8KPJKqk1gH5J9DgRY2ASl2lWCfGKXixSwevea8zH2U=
github.com/flyteorg/datacatalog v1.0.44 h1:EHdlV4jA1QjnxI6uj9m5fQg+O0VAxsgSG9MWkWAW4Gs=
github.com/flyteorg/datacatalog v1.0.44/go.mod h1:VhtWkjCBJ9LZpt6uqTyKMYq1IAkW7dUeAdbWN9DI6h0=
github.com/flyteorg/flyte v1.5.0 h1:rAMoqvsKg3myEmQWL+b9TKR0qpvrP+oPzHH7uK9UVt0=
github.com/flyteorg/flyte v1.5.0/go.mod h1:XOqL347+bQB61nKZSy//rsBCutUlhsEhHb//fOzg7Q8=
github.com/flyteorg/flyteadmin v1.1.88 h1:l63OZ7bYsxADV3xA+kGvDK07eash+ODyWpqqY/wu0ws=
github.com/flyteorg/flyteadmin v1.1.88/go.mod h1:9vnzp7OX8u7Xz8NQV+kgKR1Y7lbn4lTKDQF8PLaHeiE=
github.com/flyteorg/flyteidl v1.3.14 h1:o5M0g/r6pXTPu5PEurbYxbQmuOu3hqqsaI2M6uvK0N8=
github.com/flyteorg/flyteidl v1.3.14/go.mod h1:Pkt2skI1LiHs/2ZoekBnyPhuGOFMiuul6HHcKGZBsbM=
github.com/flyteorg/flyteplugins v1.0.45 h1:I/N4ehOxX6ln8DivyZ9gayp/UYiBcqoizBbG1hfwIXM=
github.com/flyteorg/flyteplugins v1.0.45/go.mod h1:ztsonku5fKwyxcIg1k69PTiBVjRI6d3nK5DnC+iwx08=
github.com/flyteorg/flytepropeller v1.1.76 h1:EANN/ZH7QE2CIGGargrRZXr1uC09mbjzb4z6N51M1KM=
github.com/flyteorg/flytepropeller v1.1.76/go.mod h1:jAMN8++sdzEwVQ72ulEBlw+lW7rICDhGgTZcV1xdu2Y=
github.com/flyteorg/flytepropeller v1.1.77 h1:n7wi79pAar9zRDhFfL4of0xXHgk6ih1O99gmxK7jp5Q=
github.com/flyteorg/flytepropeller v1.1.77/go.mod h1:jAMN8++sdzEwVQ72ulEBlw+lW7rICDhGgTZcV1xdu2Y=
github.com/flyteorg/flytestdlib v1.0.16 h1:Nv468DHVZMdhzA1WD3a/ef5M59xXIbxdUN4bLX86KWU=
github.com/flyteorg/flytestdlib v1.0.16/go.mod h1:ghw/cjY0sEWIIbyCtcJnL/Gt7ZS7gf9SUi0CCPhbz3s=
github.com/flyteorg/stow v0.3.6 h1:jt50ciM14qhKBaIrB+ppXXY+SXB59FNREFgTJqCyqIk=
Expand Down

0 comments on commit bf346e5

Please sign in to comment.