ci: Split release into a separate PR build workflow

Because the release workflow already runs on dev and main, it is not necessary to also trigger it for PRs.
This commit is contained in:
oSumAtrIX 2024-02-21 22:29:44 +01:00
parent ba75a51b71
commit 930dc297c1
No known key found for this signature in database
GPG key ID: A9B3094ACDB604B4
3 changed files with 23 additions and 4 deletions

View file

@ -0,0 +1,23 @@
name: Build pull request
on:
workflow_dispatch:
pull_request:
branches:
- dev
jobs:
release:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Cache Gradle
uses: burrunan/gradle-cache-action@v1
- name: Build
run: ./gradlew build clean

View file

@ -6,10 +6,6 @@ on:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
release: