Update build and deploy workflows to support branch-specific builds and Java setup
Some checks failed
Build / build (push) Successful in 1m58s
Deploy / build (push) Failing after 3m18s

This commit is contained in:
2025-06-09 09:15:36 +02:00
parent b47b3abbab
commit ae010a0e21
2 changed files with 11 additions and 1 deletions

View File

@@ -1,5 +1,8 @@
name: Build
on: [push]
on:
push:
branches:
- '*'
jobs:
build:
runs-on: standard-latest

View File

@@ -10,6 +10,13 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin' # See 'Supported distributions' for available options
java-version: '21'
cache: 'gradle'
- name: Login
with: # Set the secret as an input
package_rw: ${{ secrets.PACKAGE_RW }}