-
Notifications
You must be signed in to change notification settings - Fork 0
31 lines (29 loc) · 809 Bytes
/
deploy.yml
File metadata and controls
31 lines (29 loc) · 809 Bytes
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
name: Deploy
on:
workflow_dispatch:
push:
branches:
- master
paths-ignore:
- "**.md"
- "renovate.json"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- name: Set up JDK 8
uses: actions/setup-java@v4
with:
java-version: '8'
distribution: 'adopt'
server-id: azisaba
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Prepare settings.xml
run: |
echo "<settings><servers><server><id>azisaba</id><username>${{ secrets.REPO_USERNAME }}</username><password>${{ secrets.REPO_PASSWORD }}</password></server></servers></settings>" > $HOME/.m2/settings.xml
- name: Deploy
run: mvn deploy