-
Notifications
You must be signed in to change notification settings - Fork 2
42 lines (38 loc) · 1.07 KB
/
publish.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# Builds and pushes docker images on main and tags
name: Build on any branch
on:
push:
branches:
- 'main'
- 'stable'
tags:
- '*'
jobs:
build:
name: Build and publish to github packages
runs-on: ubuntu-latest
timeout-minutes: 60
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'maven'
- name: Build customized GeoServer version
run: |
./mvnw clean install -DskipTests -ntp -T4 -U
- name: Publish package
run: |
./mvnw --batch-mode deploy -DskipTests -ntp \
-DaltDeploymentRepository=github::https://maven.pkg.github.com/camptocamp/geoserver-cloud-geoserver
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Remove project jars from cached repository
run: |
rm -rf ~/.m2/repository/org/geoserver
find ~/.m2/repository -name "*SNAPSHOT*" -type d | xargs rm -rf {}