2025-01-14 14:19:18 +01:00
|
|
|
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
|
|
|
|
|
2025-01-14 14:23:37 +01:00
|
|
|
- name: Checkout
|
2025-01-14 14:19:18 +01:00
|
|
|
uses: https://github.com/actions/checkout@v4
|
|
|
|
|
|
|
|
- name: Build
|
|
|
|
run: mvn package
|
|
|
|
|
|
|
|
- name: Upload artifacts
|
2025-01-14 14:23:37 +01:00
|
|
|
uses: https://github.com/actions/upload-artifact@v4
|
2025-01-14 14:19:18 +01:00
|
|
|
with:
|
2025-01-14 14:23:37 +01:00
|
|
|
path: target/blog-software-java-*.jar
|