Skip to content

Commit 314efcc

Browse files
Add gh workfllow
1 parent 9ec2ae3 commit 314efcc

File tree

2 files changed

+40
-1
lines changed

2 files changed

+40
-1
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Java CI with Maven
2+
3+
on:
4+
push:
5+
branches: [ "1.9.x" ]
6+
pull_request:
7+
branches: [ "1.9.x" ]
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: read
14+
packages: write
15+
16+
steps:
17+
- uses: actions/checkout@v5
18+
19+
- name: Spring Gradle Build Action
20+
uses: spring-io/spring-gradle-build-action@v2
21+
with:
22+
java-version: '21'
23+
distribution: 'temurin'
24+
25+
- name: Run tests and produce artefact
26+
run: ./gradlew -DexcludeTags=AcceptanceTest,scab clean :osb-cmdb:check osb-cmdb:assemble
27+
28+
- name: Upload artifacts
29+
uses: actions/upload-artifact@v4
30+
with:
31+
name: Package
32+
path: |
33+
osb-cmdb/build/libs/*.jar

TODO.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,15 @@
44
* [ ] compile acceptance tests
55
* [ ] use openrewrite to perform sequential stack migration ?
66
* [x] diff jar with latest
7+
* [ ] fix missing git.properties
8+
* [ ] Push as 1.9-x branch
9+
* [ ] Set 1.9-x branch as default branch
710
* [ ] set up github action
8-
* [ ] publish as github release
11+
* [ ] publish as github release: 1.9.0-SNAPSHOT
912
* [ ] test E2E
13+
* Paas-templates feature branch
14+
15+
### set up github action
1016

1117
### Check tests pass
1218

0 commit comments

Comments
 (0)