Skip to content

Commit

Permalink
github: code namespace needed by deploy action
Browse files Browse the repository at this point in the history
The reference `needs.code.outputs.xml` needs the `code` namespace
to exist, so we need to include `code` even though `test` already
depends on `code`.

Signed-off-by: Gerwin Klein <[email protected]>
  • Loading branch information
lsf37 committed Jul 11, 2022
1 parent 90b6315 commit 359f4fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
name: Deploy manifest
if: ${{ github.repository_owner == 'seL4' && github.event_name != 'pull_request' }}
runs-on: ubuntu-latest
needs: test
needs: [test, code]
steps:
- name: Deploy
uses: seL4/ci-actions/manifest-deploy@master
Expand Down

0 comments on commit 359f4fd

Please sign in to comment.