Skip to content

Commit

Permalink
CURB-4092 Fix broken CI job dependencies.
Browse files Browse the repository at this point in the history
  • Loading branch information
Rekhyt committed May 21, 2024
1 parent c512dab commit b3ecdf1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/check_and_deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
build-zip-regular:
name: Build the ZIP
needs: [check, test]
needs: [check]
runs-on: ubuntu-20.04
if: startsWith(github.ref, 'refs/tags/') # only tags
steps:
Expand All @@ -48,7 +48,7 @@ jobs:

build-zip-guzzle-7-4:
name: Build the ZIP with Guzzle 7.4 pinned
needs: [check, test]
needs: [check]
runs-on: ubuntu-20.04
if: startsWith(github.ref, 'refs/tags/') # only tags
steps:
Expand Down Expand Up @@ -77,7 +77,7 @@ jobs:

release:
name: Create GitHub release & attach ZIP files
needs: [build-zip]
needs: [build-zip-regular, build-zip-guzzle-7-4]
if: startsWith(github.ref, 'refs/tags/') # only tags
runs-on: ubuntu-20.04
steps:
Expand Down

0 comments on commit b3ecdf1

Please sign in to comment.