mirror of
https://github.com/jmagar/unraid-mcp
synced 2026-04-21 13:37:53 +00:00
fix(ci): remove invalid secrets context from job-level if condition
This commit is contained in:
parent
94b11ff982
commit
1c6a9d737a
1 changed files with 2 additions and 4 deletions
6
.github/workflows/ci.yml
vendored
6
.github/workflows/ci.yml
vendored
|
|
@ -77,14 +77,12 @@ jobs:
|
|||
name: MCP Integration Tests
|
||||
runs-on: ubuntu-latest
|
||||
needs: [lint, typecheck, test]
|
||||
if: >-
|
||||
(github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository) &&
|
||||
secrets.UNRAID_API_URL != '' &&
|
||||
secrets.UNRAID_API_KEY != ''
|
||||
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name == github.repository
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- uses: astral-sh/setup-uv@v5
|
||||
- name: Run integration tests
|
||||
continue-on-error: true
|
||||
env:
|
||||
UNRAID_API_URL: ${{ secrets.UNRAID_API_URL }}
|
||||
UNRAID_API_KEY: ${{ secrets.UNRAID_API_KEY }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue