19 lines
No EOL
500 B
YAML
19 lines
No EOL
500 B
YAML
on: [push]
|
|
jobs:
|
|
build:
|
|
runs-on: docker
|
|
container: debian:sid
|
|
steps:
|
|
- name: Install JDK and other deps
|
|
run: apt update && apt install --no-install-recommends -y openjdk-21-jdk-headless maven git nodejs curl zstd
|
|
|
|
- name: Upload artifacts
|
|
uses: https://github.com/actions/checkout@v4
|
|
|
|
- name: Build
|
|
run: mvn package
|
|
|
|
- name: Upload artifacts
|
|
uses: https://github.com/actions/upload-artifact@v3
|
|
with:
|
|
path: target |