mirror of https://github.com/knative/func.git
chore: fix ci.yaml (#1324)
The `needs` contexts were pointing to old job steps. Signed-off-by: Lance Ball <lball@redhat.com> Signed-off-by: Lance Ball <lball@redhat.com>
This commit is contained in:
parent
9536e336af
commit
a74e825a2e
|
@ -54,8 +54,8 @@ jobs:
|
|||
files: ./coverage.txt
|
||||
flags: integration-tests
|
||||
|
||||
build-and-publish:
|
||||
needs: test
|
||||
build:
|
||||
needs: [check, test-unit, test-integration]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
@ -94,8 +94,9 @@ jobs:
|
|||
with:
|
||||
name: Windows Binary
|
||||
path: func_windows_amd64.exe
|
||||
|
||||
publish-image:
|
||||
needs: test
|
||||
needs: build
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
|
|
Loading…
Reference in New Issue