Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ciarams87 committed Jan 26, 2021
1 parent 5d13c1a commit 98efb4e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Expand Up @@ -574,7 +574,7 @@ jobs:
release-docker:
name: Release Images
runs-on: ${{ matrix.os }}
needs: [smoke-tests, helm-tests]
needs: [build, binary, unit-tests]
if: github.event_name == 'create' && contains(github.ref, 'refs/tags/')
strategy:
matrix:
Expand Down Expand Up @@ -635,7 +635,7 @@ jobs:
publish-plus-docker:
name: Publish Plus Images
runs-on: ${{ matrix.os }}
needs: [smoke-tests, helm-tests]
needs: [build, binary, unit-tests]
if: github.event_name == 'create' && contains(github.ref, 'refs/tags/')
strategy:
matrix:
Expand Down Expand Up @@ -718,7 +718,7 @@ jobs:
release-plus-docker:
name: Release Plus Images
runs-on: ubuntu-18.04
needs: [smoke-tests, helm-tests, publish-plus-docker]
needs: [build, binary, unit-tests, publish-plus-docker]
if: github.event_name == 'create' && contains(github.ref, 'refs/tags/')
steps:
- name: GCR Login
Expand Down Expand Up @@ -754,7 +754,7 @@ jobs:
package-helm:
name: Package Helm Chart
runs-on: ubuntu-18.04
needs: [smoke-tests, helm-tests, release-docker]
needs: [build, binary, unit-tests, release-docker]
if: github.event_name == 'create' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout Repository
Expand All @@ -772,7 +772,7 @@ jobs:
release-helm:
name: Release Helm Chart
runs-on: ubuntu-18.04
needs: [smoke-tests, helm-tests, release-docker, package-helm]
needs: [build, binary, unit-tests, release-docker, package-helm]
if: github.event_name == 'create' && contains(github.ref, 'refs/tags/')
steps:
- name: Checkout Repository
Expand Down

0 comments on commit 98efb4e

Please sign in to comment.