Skip to content

Build & Release

Build & Release #6

Workflow file for this run

name: Build & Release
# This makes the workflow only trigger manually from the GitHub Actions UI
on:
workflow_dispatch:
env:
FORCE_JAVASCRIPT_ACTIONS_TO_NODE24: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
cache: maven
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: DZrtp-Build
path: target/*.jar