Skip to content

Added listing libs directory to check content #7

Added listing libs directory to check content

Added listing libs directory to check content #7

Workflow file for this run

name: Build JAR for release
on:
push:
branches: [ main, jar_release_gh_action ]
release:
types: [ published ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup JDK
uses: actions/setup-java@v4
with:
distribution: 'zulu'
java-version: 17
cache: 'gradle'
- name: Gradle build
run: ./gradlew build --no-daemon
- name: Check if JAR exists
run: ls -l build/libs/
- name: Upload JAR as a release
# if: github.event.name == 'release'
uses: actions/upload-artifact@v1
with:
name: bitwig-theme-editor-jar
path: build/libs/**.jar