Skip to content

Commit

Permalink
Release 5.10.0
Browse files Browse the repository at this point in the history
  • Loading branch information
IvanKustau committed Sep 1, 2023
1 parent 7e744f8 commit 4d4034c
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 17 deletions.
11 changes: 1 addition & 10 deletions .github/workflows/manually-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,9 @@ on:
version:
description: 'Release version'
required: true
scripts_version:
description: 'Gradle scripts version'
required: true
bom_version:
description: 'Commons bom version'
required: true

env:
GH_USER_NAME: github.actor
SCRIPTS_VERSION: ${{ github.event.inputs.scripts_version }}
BOM_VERSION: ${{ github.event.inputs.bom_version }}
RELEASE_VERSION: ${{ github.event.inputs.version }}
REPOSITORY_URL: 'https://maven.pkg.github.com/'

Expand Down Expand Up @@ -46,7 +38,6 @@ jobs:
- name: Release with Gradle
id: release
run: |
./gradlew release -PreleaseMode -Pscripts.version=${{env.SCRIPTS_VERSION}} \
-Pbom.version=${{env.BOM_VERSION}} \
./gradlew release -PreleaseMode \
-PgithubUserName=${{env.GH_USER_NAME}} -PgithubToken=${{secrets.GITHUB_TOKEN}} \
-PgpgPassphrase=${{secrets.GPG_PASSPHRASE}} -PgpgPrivateKey="${{secrets.GPG_PRIVATE_KEY}}"
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ on:

env:
GH_USER_NAME: github.actor
SCRIPTS_VERSION: 5.8.0
BOM_VERSION: 5.7.6
REPOSITORY_URL: 'https://maven.pkg.github.com/'

jobs:
Expand Down Expand Up @@ -41,7 +39,6 @@ jobs:
- name: Release with Gradle
id: release
run: |
./gradlew release -PreleaseMode -Pscripts.version=${{env.SCRIPTS_VERSION}} \
-Pbom.version=${{env.BOM_VERSION}} \
./gradlew release -PreleaseMode \
-PgithubUserName=${{env.GH_USER_NAME}} -PgithubToken=${{secrets.GITHUB_TOKEN}} \
-PgpgPassphrase=${{secrets.GPG_PASSPHRASE}} -PgpgPrivateKey="${{secrets.GPG_PRIVATE_KEY}}"
6 changes: 3 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ project.ext {
releaseMode = project.hasProperty("releaseMode")
}

def scriptsUrl = 'https://raw.githubusercontent.com/reportportal/gradle-scripts/' + (releaseMode ? getProperty('scripts.version') : 'master')
def scriptsUrl = 'https://raw.githubusercontent.com/reportportal/gradle-scripts/' + (releaseMode ? '5.10.0' : 'master')

apply from: "$scriptsUrl/build-docker.gradle"
apply from: "$scriptsUrl/build-commons.gradle"
Expand Down Expand Up @@ -54,9 +54,9 @@ ext['snakeyaml.version'] = '1.31'

dependencies {
if (releaseMode) {
implementation 'com.github.reportportal:commons-events:5.7.3'
implementation 'com.github.reportportal:commons-events:5.10.0'
} else {
implementation 'com.github.reportportal:commons-events:35a1246f'
implementation 'com.github.reportportal:commons-events:e337f8b7be'
}

implementation group: 'org.json', name: 'json', version: '20220320'
Expand Down

0 comments on commit 4d4034c

Please sign in to comment.