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-22 04:23:53 +01:00
parent cc183062ab
commit b0b2c10665
No known key found for this signature in database
GPG Key ID: A9B3094ACDB604B4
3 changed files with 25 additions and 4 deletions

View File

@ -0,0 +1,25 @@
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
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: ./gradlew build --no-daemon

View File

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