Replace Maven CI pipeline with a simple "Hello World" workflow in .woodpecker.

This commit is contained in:
2026-03-07 11:01:23 +01:00
parent 6abd0ce862
commit 53b10b142e
2 changed files with 9 additions and 25 deletions
+9
View File
@@ -0,0 +1,9 @@
when:
- event: push
branch: main
steps: hello
- name: hello
image: alpine
commands:
- echo "Hello World!"
-25
View File
@@ -1,25 +0,0 @@
name: CI Pipeline
on:
push:
branches:
- develop
- 'feature**'
pull_request:
branches:
- develop
create:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
container:
image: maven:3-amazoncorretto-17-alpine
steps:
- name: Build with Maven
run: |
echo "Running package..."
mvn clean package