blog-software-java/.forgejo/workflows/build.yml
Minecon724 f907c0f7cf
All checks were successful
/ build (push) Successful in 28s
ci: Fix actions
Signed-off-by: Minecon724 <git@m724.eu>
2025-02-10 16:53:14 +01:00

21 lines
No EOL
520 B
YAML

on: [push]
jobs:
build:
runs-on: docker
container: eclipse-temurin:21-alpine
steps:
- name: Install JDK and other deps
run: apk upgrade && apk add maven git nodejs curl
- name: Checkout
uses: https://github.com/actions/checkout@v4
- name: Build
run: mvn package
- name: Upload artifacts
uses: https://github.com/actions/upload-artifact@v3
with:
name: built-jar
path: target/blog-*.jar
if-no-files-found: error