summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorMichael Christen <mc@yacy.net>2023-03-05 01:40:08 +0100
committerMichael Christen <mc@yacy.net>2023-03-05 01:40:08 +0100
commit84c797f53dc9a32acd68508b515bda6b40aa6ff0 (patch)
tree1f3d4bfef7f9a0354786cf24b20c5c5756e0ce74 /.github/workflows
parent3472bcb4d337a9b97a158565747a0affcc92c0be (diff)
fixed condition in workflow
Diffstat (limited to '.github/workflows')
-rw-r--r--.github/workflows/ant-build-pull-request.yaml2
-rw-r--r--.github/workflows/ant-build-selfhosted.yaml2
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