Skip to content

wip - Mon Sep 2 11:04:35 AM EDT 2024 #65

wip - Mon Sep 2 11:04:35 AM EDT 2024

wip - Mon Sep 2 11:04:35 AM EDT 2024 #65

Workflow file for this run

# 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@flossware.org'
runs-on: ubuntu-latest
steps:
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- name: Checkout
uses: actions/checkout@v2
- name: Preparing settings.xml
uses: s4u/maven-settings-action@v3.0.0
with:
githubServer: false
servers: |
[
{
"id": "packagecloud-flossware",
"configuration": {
"httpHeaders": {
"property": {
"name": "Authorization",
"value": "${{ secrets.PCT }}"
}
}
}
}
]
- name: Deploy
run: "mvn -DskipTests clean install deploy"
- uses: oleksiyrudenko/gha-git-credentials@latest
with:
global: true
name: 'Version Bump'
email: 'version-bump@flossware.org'
actor: 'VersionBump'
token: '${{ secrets.GITHUB_TOKEN }}'
- name: Preparing environment
run: sudo apt-get update
- name: Preparing settings.xml
uses: s4u/maven-settings-action@v3.0.0
with:
githubServer: false
servers: |
[
{
"id": "packagecloud-flossware",
"configuration": {
"httpHeaders": {
"property": {
"name": "Authorization",
"value": "${{ secrets.PACKAGECLOUD_TOKEN }}"
}
}
}
}
]
- uses: actions/checkout@v2
- run: cat ~/.m2/settings.xml
- uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '17'
- 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: Deploy
run: "mvn -DskipTests deploy"
- name: Tag
run: "mvn scm:checkin scm:tag"