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:
Lance Ball 2022-10-12 16:44:52 -04:00 committed by GitHub
parent 9536e336af
commit a74e825a2e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 3 deletions

View File

@ -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