diff --git a/.github/workflows/publish-snapshot.yaml b/.github/workflows/publish-snapshot.yaml index 8a896f35e..d545d3a1d 100644 --- a/.github/workflows/publish-snapshot.yaml +++ b/.github/workflows/publish-snapshot.yaml @@ -2,7 +2,7 @@ name: Publish Snapshot on: push: branches: - - develop + - main jobs: publish: @@ -45,4 +45,4 @@ jobs: ORG_GRADLE_PROJECT_SIGNING_KEY: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_KEY }} ORG_GRADLE_PROJECT_SIGNING_PWD: ${{ secrets.ORG_GRADLE_PROJECT_SIGNING_PWD }} ORG_GRADLE_PROJECT_NEXUS_USERNAME: ${{ secrets.ORG_GRADLE_PROJECT_NEXUS_USERNAME }} - ORG_GRADLE_PROJECT_NEXUS_PASSWORD: ${{ secrets.ORG_GRADLE_PROJECT_NEXUS_PASSWORD }} \ No newline at end of file + ORG_GRADLE_PROJECT_NEXUS_PASSWORD: ${{ secrets.ORG_GRADLE_PROJECT_NEXUS_PASSWORD }} diff --git a/README.md b/README.md index 6118bab16..12323e24c 100644 --- a/README.md +++ b/README.md @@ -188,7 +188,7 @@ If you're migrating **from Chucker v2.0 to v3.0**, please expect multiple breaki ## Snapshots 📦 -Development of Chucker happens in the [`develop`](https://github.com/ChuckerTeam/chucker/tree/develop) branch. Every push to `develop` will trigger a publishing of a `SNAPSHOT` artifact for the upcoming version. You can get those snapshots artifacts directly from Sonatype with: +Development of Chucker happens in the [`main`](https://github.com/ChuckerTeam/chucker/tree/main) branch. Every push to `main` will trigger a publishing of a `SNAPSHOT` artifact for the upcoming version. You can get those snapshots artifacts directly from Sonatype with: ```gradle repositories { @@ -200,15 +200,15 @@ dependencies { } ``` -Moreover, you can still use [JitPack](https://jitpack.io/#ChuckerTeam/chucker) as it builds every branch. So the top of `develop` is available here: +Moreover, you can still use [JitPack](https://jitpack.io/#ChuckerTeam/chucker) as it builds every branch. So the top of `main` is available here: ```gradle repositories { maven { url "https://jitpack.io" } } dependencies { - debugImplementation "com.github.chuckerteam.chucker:library:develop-SNAPSHOT" - releaseImplementation "com.github.chuckerteam.chucker:library-no-op:develop-SNAPSHOT" + debugImplementation "com.github.chuckerteam.chucker:library:main-SNAPSHOT" + releaseImplementation "com.github.chuckerteam.chucker:library-no-op:main-SNAPSHOT" } ```