-
Notifications
You must be signed in to change notification settings - Fork 0
47 lines (38 loc) · 1.66 KB
/
main.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
44
45
46
47
# This workflow will build a Java project with Maven
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven
# if: github.event_name == 'push' && github.ref == 'refs/heads/main' && github.event.pusher.email != 'version-bump@solenopsis.org'
name: CD-CI for RPM
on:
push:
branches: [ sfloess_issue-10 ]
jobs:
build:
if: github.event_name == 'push' && github.ref == 'refs/heads/sfloess_issue-10' && github.event.pusher.email != 'version-bump@solenopsis.org'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Preparing environment
run: sudo apt-get update
- name: Preparing settings.xml
uses: s4u/maven-settings-action@v3.0.0
with:
servers: |
[
{
"id": "packagecloud-flossware",
"configuration": {
"httpHeaders": {
"property": {
"name": "Authorization",
"value": "${env.PACKAGECLOUD_MAVEN_AUTHORIZATION}"
}
}
}
}
]
- name: Incrementing pom.xml version
run: "mvn -U build-helper:parse-version versions:set -DnewVersion='${parsedVersion.majorVersion}'.'${parsedVersion.nextMinorVersion}' versions:commit"
- name: Build
run: mvn -U clean install
- name: Tag
run: "mvn scm:checkin scm:tag"