aboutsummaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-04-22 17:45:58 +0200
committerIgnat Beresnev <ignat.beresnev@jetbrains.com>2023-04-22 17:45:58 +0200
commitdd2a38b12658e7343a1357dc5cd3850fa090a4ba (patch)
treeeec277557fe53e8f5b01a9e982feeba676904d11 /.github
parent2a1c55a0ed167019ae187cd2df93b069ae97e0ee (diff)
downloaddokka-dd2a38b12658e7343a1357dc5cd3850fa090a4ba.tar.gz
dokka-dd2a38b12658e7343a1357dc5cd3850fa090a4ba.tar.bz2
dokka-dd2a38b12658e7343a1357dc5cd3850fa090a4ba.zip
Fix workflow expression error
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/preview-publish-ga.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/preview-publish-ga.yml b/.github/workflows/preview-publish-ga.yml
index 4171ede3..8b428d7a 100644
--- a/.github/workflows/preview-publish-ga.yml
+++ b/.github/workflows/preview-publish-ga.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
if: > # Run this job only for pull requests from forks because members with write access have web preview
github.event_name != 'pull_request' ||
- (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
steps:
- name: Checkout dokka
uses: actions/checkout@v3
@@ -41,7 +41,7 @@ jobs:
runs-on: ubuntu-latest
if: > # Run this job only for pull requests from forks because members with write access have web preview
github.event_name != 'pull_request' ||
- (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
steps:
- name: Checkout dokka
uses: actions/checkout@v3
@@ -70,7 +70,7 @@ jobs:
runs-on: ubuntu-latest
if: > # Run this job only for pull requests from forks because members with write access have web preview
github.event_name != 'pull_request' ||
- (github.event_name == pull_request && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
+ (github.event_name == 'pull_request' && github.event.pull_request.head.repo.full_name != 'Kotlin/dokka')
steps:
- name: Checkout dokka
uses: actions/checkout@v3