-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #19 from recurly/maven-workflow
Maven workflow fixes
- Loading branch information
Showing
6 changed files
with
62 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Release | ||
on: | ||
workflow_dispatch: | ||
inputs: | ||
version: | ||
description: 'Version' | ||
required: true | ||
|
||
jobs: | ||
publish: | ||
name: Release | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Create Release on GitHub | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
tag_name: ${{ github.event.inputs.version }} | ||
release_name: ${{ github.event.inputs.version }} | ||
draft: false | ||
prerelease: false |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
SONATYPE_HOST=DEFAULT | ||
RELEASE_SIGNING_ENABLED=true | ||
|
||
GROUP=com.recurly | ||
POM_ARTIFACT_ID=android-sdk | ||
VERSION_NAME=2.0.0 | ||
|
||
POM_PACKAGING=aar | ||
|
||
POM_NAME=Recurly Android SDK | ||
POM_DESCRIPTION=Android SDK for Recurly payment services | ||
POM_INCEPTION_YEAR=2022 | ||
POM_URL=https://github.com/recurly/recurly-client-android | ||
|
||
POM_LICENSE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENSE_DIST=repo | ||
|
||
POM_SCM_URL=https://github.com/recurly/recurly-client-android | ||
POM_SCM_CONNECTION=scm:https://github.com/recurly/recurly-client-android.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:recurly/recurly-client-android.git | ||
|
||
POM_DEVELOPER_ID=support | ||
POM_DEVELOPER_NAME=Recurly Support | ||
POM_DEVELOPER_EMAIL[email protected] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,5 +13,4 @@ buildscript { | |
// in the individual module build.gradle files | ||
} | ||
} | ||
apply plugin: "com.vanniktech.maven.publish" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,40 +11,11 @@ org.gradle.jvmargs=-Xmx2048m -Dfile.encoding=UTF-8 | |
# This option should only be used with decoupled projects. More details, visit | ||
# http://www.gradle.org/docs/current/userguide/multi_project_builds.html#sec:decoupled_projects | ||
# org.gradle.parallel=true | ||
# AndroidX package structure to make it clearer which packages are bundled with the | ||
# Android operating system, and which are packaged with your app"s APK | ||
# AndroidX package structure to make it clearer which packages are bundled with the # Android operating system, and which are packaged with your app"s APK | ||
# https://developer.android.com/topic/libraries/support-library/androidx-rn | ||
android.useAndroidX=true | ||
# Automatically convert third-party libraries to use AndroidX | ||
android.enableJetifier=true | ||
# Kotlin code style for this project: "official" or "obsolete": | ||
kotlin.code.style=official | ||
org.gradle.warning.mode=all | ||
|
||
#POM Project settings | ||
# You will need update the semamtic versioning in "VERSION_NAME" after changes are complete. | ||
SONATYPE_HOST=DEFAULT | ||
RELEASE_SIGNING_ENABLED=true | ||
|
||
GROUP=com.recurly | ||
POM_ARTIFACT_ID=android-sdk | ||
VERSION_NAME=2.0.0 | ||
|
||
POM_PACKAGING=aar | ||
|
||
POM_NAME=Recurly Android SDK | ||
POM_DESCRIPTION=Android SDK for Recurly payment services | ||
POM_INCEPTION_YEAR=2022 | ||
POM_URL=https://github.com/recurly/recurly-client-android | ||
|
||
POM_LICENSE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENSE_URL=https://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENSE_DIST=repo | ||
|
||
POM_SCM_URL=https://github.com/recurly/recurly-client-android | ||
POM_SCM_CONNECTION=scm:https://github.com/recurly/recurly-client-android.git | ||
POM_SCM_DEV_CONNECTION=scm:[email protected]:recurly/recurly-client-android.git | ||
|
||
POM_DEVELOPER_ID=support | ||
POM_DEVELOPER_NAME=Recurly Support | ||
POM_DEVELOPER_EMAIL=[email protected] | ||
org.gradle.warning.mode=all |