ci(actions): remove condition from build-base.yml

build-base.yml doesn't run on pushes oops haha
This commit is contained in:
Alexander Minkin 2025-01-31 18:58:40 +03:00
parent 62cb1ce8f4
commit 9ad9bf92a5
Signed by untrusted user: WerySkok
GPG key ID: 88E9A2F3AFE44C30

View file

@ -12,12 +12,6 @@ env:
jobs:
build-cli:
runs-on: ubuntu-latest
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs
if: >
github.event_name == 'push'
|| (github.event_name == 'pull_request'
&& github.event.pull_request.head.repo.full_name != github.repository)
steps:
- uses: actions/checkout@v3
@ -48,12 +42,6 @@ jobs:
build-apache:
runs-on: ubuntu-latest
# 'push' runs on inner branches, 'pull_request' will run only on outer PRs
if: >
github.event_name == 'push'
|| (github.event_name == 'pull_request'
&& github.event.pull_request.head.repo.full_name != github.repository)
steps:
- uses: actions/checkout@v3