Skip to content

Fix: Use explicit file paths in release workflow to prevent duplicate… #6

Fix: Use explicit file paths in release workflow to prevent duplicate…

Fix: Use explicit file paths in release workflow to prevent duplicate… #6

Workflow file for this run

name: Build and Test
on:
push:
branches: [ master, main ]
pull_request:
branches: [ master, main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up JDK 11
uses: actions/setup-java@v4
with:
java-version: '11'
distribution: 'temurin'
- name: Validate Gradle wrapper
uses: gradle/wrapper-validation-action@v2
- name: Build and Test
run: ./gradlew clean build check
- name: Build distribution packages
run: ./gradlew buildRpm buildDeb