-
Notifications
You must be signed in to change notification settings - Fork 35
73 lines (68 loc) · 2.46 KB
/
release.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
name: Release
on:
workflow_dispatch:
inputs:
java_version:
description: Java version to use
type: string
required: false
default: 17
branch:
description: "The branch to checkout when cutting the release."
required: true
default: "479-command-line-distributions-shall-be-attached-to-github-releases"
releaseVersion:
description: "Default version to use when preparing a release."
required: true
default: "X.Y.Z"
developmentVersion:
description: "Default version to use for new local working copy."
required: true
default: "X.Y.Z-SNAPSHOT"
dryRun:
description: "Perform a dry run"
required: true
default: false
type: boolean
artifacts:
description: "Path expression for artifacts to upload."
type: string
required: false
# default: "cli/neo4jv?/target/*-distribution.zip"
jobs:
build:
uses: jqassistant-tooling/jqassistant-github-actions/.github/workflows/release.yml@neo4jRelease
with:
branch: ${{ github.event.inputs.branch }}
releaseVersion: ${{ github.event.inputs.releaseVersion }}
developmentVersion: ${{ github.event.inputs.developmentVersion }}
dryRun: ${{ github.event.inputs.dryRun }}
artifacts: ${{ github.event.inputs.artifacts }}
secrets:
ossrh_username: ${{ secrets.OSSRH_USERNAME }}
ossrh_password: ${{ secrets.OSSRH_PASSWORD }}
ossrh_signing_key: ${{ secrets.OSSRH_SIGNING_KEY }}
ossrh_signing_password: ${{ secrets.OSSRH_SIGNING_PASSWORD }}
sonar_token: ${{ secrets.SONAR_TOKEN }}
unpack-artifacts:
runs-on: ubuntu-latest
needs: build
if: ${{ github.event.inputs.artifacts != '' }}
steps:
- name: Download Artifacts
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: artifacts
zipFilePath: .
- name: Upload Neo4jv4 Artifacts
uses: actions/upload-artifact@v4
with:
name: Commandline Utility Neo4jV4
path: ./neo4jv4/target/jqassistant-commandline-neo4jv4-${{ github.event.inputs.developmentVersion }}-distribution.zip
- name: Upload Neo4jv5 Artifacts
uses: actions/upload-artifact@v3
with:
name: Commandline Utility Neo4jV5
path: ./neo4jv5/target/jqassistant-commandline-neo4jv5-${{ github.event.inputs.developmentVersion }}-distribution.zip