-
Notifications
You must be signed in to change notification settings - Fork 617
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 #66 from rubensousa/develop
2.2.1
- Loading branch information
Showing
12 changed files
with
515 additions
and
350 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Dev | ||
|
||
on: | ||
pull_request: | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
branches: | ||
- 'develop' | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
branches: | ||
- 'develop' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: setup JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Install Android SDK | ||
uses: malinskiy/action-android/install-sdk@release/0.0.5 | ||
- name: Run unit tests | ||
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }} | ||
- name: Assemble library | ||
run: ./gradlew assembleRelease -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }} |
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,30 @@ | ||
name: Release | ||
|
||
on: | ||
push: | ||
paths-ignore: | ||
- '**/*.md' | ||
- '**/*.txt' | ||
branches: | ||
- 'master' | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: checkout | ||
uses: actions/checkout@v2 | ||
- name: setup JDK 1.8 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 1.8 | ||
- name: Install Android SDK | ||
uses: malinskiy/action-android/install-sdk@release/0.0.5 | ||
- name: Run unit tests | ||
run: ./gradlew testDebugUnitTest --stacktrace -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }} | ||
- name: Assemble library | ||
run: ./gradlew assembleRelease -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }} | ||
- name: Release library | ||
run: ./gradlew bintrayUpload -Pbintray_user=${{ secrets.BINTRAY_USER }} -Pbintray_apikey=${{ secrets.BINTRAY_KEY }} |
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
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 |
---|---|---|
|
@@ -12,16 +12,17 @@ | |
# 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 | ||
GROUP=com.github.rubensousa | ||
VERSION_NAME=2.2.0 | ||
POM_ARTIFACT_ID=gravitysnaphelper | ||
LIBRARY_GROUP=com.github.rubensousa | ||
LIBRARY_VERSION=2.2.1 | ||
LIBRARY_ARTIFACT=gravitysnaphelper | ||
POM_NAME=GravitySnapHelper | ||
POM_DESCRIPTION=A SnapHelper that snaps the RecyclerView to an edge | ||
POM_PACKAGING=aar | ||
POM_URL=https://github.com/rubensousa/RecyclerViewSnap | ||
POM_SCM_URL=https://github.com/rubensousa/RecyclerViewSnap | ||
POM_SCM_CONNECTION=scm:git:git://github.com/rubensousa/RecyclerViewSnap.git | ||
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/rubensousa/RecyclerViewSnap.git | ||
POM_URL=https://github.com/rubensousa/GravitySnapHelper | ||
POM_SCM_URL=https://github.com/rubensousa/GravitySnapHelper | ||
POM_VCS_URL=https://github.com/rubensousa/GravitySnapHelper.git | ||
POM_SCM_CONNECTION=scm:git:git://github.com/rubensousa/GravitySnapHelper.git | ||
POM_SCM_DEV_CONNECTION=scm:git:ssh://[email protected]/rubensousa/GravitySnapHelper.git | ||
POM_LICENCE_NAME=The Apache Software License, Version 2.0 | ||
POM_LICENCE_URL=http://www.apache.org/licenses/LICENSE-2.0.txt | ||
POM_LICENCE_DIST=repo | ||
|
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.