diff options
| author | Michael Christen <mc@yacy.net> | 2023-03-05 01:40:08 +0100 |
|---|---|---|
| committer | Michael Christen <mc@yacy.net> | 2023-03-05 01:40:08 +0100 |
| commit | 84c797f53dc9a32acd68508b515bda6b40aa6ff0 (patch) | |
| tree | 1f3d4bfef7f9a0354786cf24b20c5c5756e0ce74 /.github/workflows | |
| parent | 3472bcb4d337a9b97a158565747a0affcc92c0be (diff) | |
fixed condition in workflow
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/ant-build-pull-request.yaml | 2 | ||||
| -rw-r--r-- | .github/workflows/ant-build-selfhosted.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ant-build-pull-request.yaml b/.github/workflows/ant-build-pull-request.yaml index 08ad02649..200c83ce8 100644 --- a/.github/workflows/ant-build-pull-request.yaml +++ b/.github/workflows/ant-build-pull-request.yaml @@ -5,7 +5,7 @@ on: pull_request jobs: build: runs-on: ubuntu-latest - if: "github.repository == 'yacy/yacy_search_server' + if: github.repository == 'yacy/yacy_search_server' steps: - uses: actions/checkout@master - name: Set up JDK 8 diff --git a/.github/workflows/ant-build-selfhosted.yaml b/.github/workflows/ant-build-selfhosted.yaml index e97884679..6e4278583 100644 --- a/.github/workflows/ant-build-selfhosted.yaml +++ b/.github/workflows/ant-build-selfhosted.yaml @@ -5,7 +5,7 @@ on: push jobs: build: runs-on: self-hosted - if: "github.repository == 'yacy/yacy_search_server' + if: github.repository == 'yacy/yacy_search_server' steps: - uses: actions/checkout@master - name: Set up JDK 8 |
