-
Notifications
You must be signed in to change notification settings - Fork 82
43 lines (38 loc) · 1.13 KB
/
daily.yml
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
43
name: Daily Snapshot build
on:
schedule:
- cron: '30 1 * * *'
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: Java 11 compile
if: github.repository_owner == '52North'
steps:
- uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
- name: Build with Maven
run: mvn -U -B clean install
publish-snapshot:
needs: build
runs-on: ubuntu-latest
if: github.repository_owner == '52North'
steps:
- uses: actions/checkout@v3
- name: Set up settings.xml for GitHub Packages
uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: 11
server-id: sonatype-nexus-snapshots
server-username: MAVEN_USERNAME
server-password: MAVEN_PASSWORD
- name: Publish SNAPSHOT version Maven Central
run: mvn -B --no-transfer-progress deploy -DskipTests
env:
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }}
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }}