Skip to content

Commit

Permalink
Remove bintray (#11)
Browse files Browse the repository at this point in the history
* Remove bintray

* Remove bintray
  • Loading branch information
tasomaniac authored Mar 19, 2022
1 parent bc0fa62 commit d214d72
Show file tree
Hide file tree
Showing 3 changed files with 1 addition and 15 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,8 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Publish the plugin artifacts
run: ./gradlew publish publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET"
run: ./gradlew publishPlugins -Pgradle.publish.key="$GRADLE_KEY" -Pgradle.publish.secret="$GRADLE_SECRET"
env:
BINTRAY_API_KEY: ${{ secrets.BINTRAY_API_KEY }}
BINTRAY_USER: ${{ secrets.BINTRAY_USER }}
GRADLE_KEY: ${{ secrets.GRADLE_KEY }}
GRADLE_SECRET: ${{ secrets.GRADLE_SECRET }}

Expand Down
1 change: 0 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ Here comes AutoManifest Gradle Plugin to rescue 🚀
Configuration
-------------

[ ![Bintray](https://img.shields.io/bintray/v/gradleup/maven/auto-manifest) ](https://bintray.com/gradleup/maven/auto-manifest/_latestVersion)
[ ![Gradle Plugin Portal](https://img.shields.io/maven-metadata/v/https/plugins.gradle.org/m2/com/gradleup/auto/manifest/com.gradleup.auto.manifest.gradle.plugin/maven-metadata.xml.svg?label=Gradle%20Plugins%20Portal) ](https://plugins.gradle.org/plugin/com.gradleup.auto.manifest)

Add the plugin in your `build.gradle` file (preferably in root one)
Expand Down
11 changes: 0 additions & 11 deletions auto-manifest-plugin/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -52,17 +52,6 @@ publishing {
}
}
}

repositories {
maven {
name = "bintray"
url = uri("https://api.bintray.com/maven/gradleup/maven/auto-manifest/;publish=1;override=1")
credentials {
username = System.getenv("BINTRAY_USER")
password = System.getenv("BINTRAY_API_KEY")
}
}
}
}

dependencies {
Expand Down

0 comments on commit d214d72

Please sign in to comment.