-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* improvements from iOS work * allow address * rename all consent group to conversation * return null if it errors * small rename * update library * update bindings again * update all the bindings * update the consent filtering * add a test for it * update the tests * add back the normal release flow * update bindings * bump the bindings as well * add a way to just stream one or the other and order dms and groups * get all the tests updated * fix up lint
- Loading branch information
1 parent
9b9f628
commit 912714b
Showing
15 changed files
with
996 additions
and
408 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 |
---|---|---|
|
@@ -13,37 +13,33 @@ jobs: | |
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
|
||
- name: Configure JDK | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'adopt' | ||
java-version: '17' | ||
|
||
- name: Setup Gradle | ||
uses: gradle/actions/setup-gradle@v3 | ||
|
||
- name: Run build with Gradle Wrapper | ||
run: ./gradlew build | ||
|
||
- name: Tag version 3.0.0 | ||
run: | | ||
git tag 3.0.0 | ||
git push origin 3.0.0 | ||
- name: Create a GitHub release for version 3.0.0 | ||
- name: Bump version and push tag | ||
id: tag_version | ||
uses: mathieudutour/[email protected] | ||
with: | ||
release_branches: "release" | ||
github_token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Create a GitHub release | ||
uses: ncipollo/release-action@v1 | ||
with: | ||
tag: "3.0.0" | ||
name: "Release 3.0.0" | ||
body: "A XMTP MLS only SDK 3.0.0" | ||
|
||
tag: ${{ steps.tag_version.outputs.new_version }} | ||
name: Release ${{ steps.tag_version.outputs.new_tag }} | ||
body: ${{ steps.tag_version.outputs.changelog }} | ||
- name: Gradle Publish | ||
env: | ||
RELEASE_VERSION: "3.0.0" | ||
RELEASE_VERSION: ${{ steps.tag_version.outputs.new_version }} | ||
MAVEN_USERNAME: ${{ secrets.OSSRH_USERNAME }} | ||
MAVEN_PASSWORD: ${{ secrets.OSSRH_TOKEN }} | ||
SIGN_KEY: ${{ secrets.OSSRH_GPG_SECRET_KEY }} | ||
SIGN_PASSWORD: ${{ secrets.OSSRH_GPG_SECRET_KEY_PASSWORD }} | ||
MAVEN_PROFILE_ID: ${{ secrets.MAVEN_PROFILE_ID }} | ||
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository | ||
run: ./gradlew publishToSonatype closeAndReleaseSonatypeStagingRepository |
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
Oops, something went wrong.