Skip to content

Commit

Permalink
task: Trigger maven buid [DHIS2-18615]
Browse files Browse the repository at this point in the history
  • Loading branch information
muilpp committed Dec 13, 2024
1 parent 8925412 commit dae7660
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions .github/workflows/hello-world.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
name: Hello World Pipeline

on:
workflow_run:
workflows: ["Check formatting"]
types:
- completed
pull_request:
# For this to work, this workflow needs to be on master https://github.com/orgs/community/discussions/66512#discussioncomment-6950485
# workflow_run:
# workflows: ["Check formatting"]
# types:
# - completed


jobs:
say-hello:
Expand All @@ -21,3 +23,11 @@ jobs:

- name: Print Hello World
run: echo "Hello, World!"

# Set up Maven
- name: Set up Maven
run: sudo apt-get install maven

# Run Maven build
- name: Build with Maven
run: mvn --threads 4 --batch-mode --no-transfer-progress clean install --file

0 comments on commit dae7660

Please sign in to comment.