Skip to content

Commit

Permalink
Bump and fix commit
Browse files Browse the repository at this point in the history
  • Loading branch information
jakubuid committed Dec 4, 2024
1 parent 692b6e2 commit 39e11d0
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 11 deletions.
14 changes: 5 additions & 9 deletions .github/workflows/release-kotlin.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

env:
CARGO_TERM_COLOR: always
VERSION: ${{ github.event.inputs.version || '0.2.71' }}
VERSION: ${{ github.event.inputs.version || '0.2.72' }}
TARGET_BRANCH: ${{ github.ref_name }}

permissions:
Expand Down Expand Up @@ -71,12 +71,8 @@ jobs:
git config user.email "github-actions[bot]@users.noreply.github.com"
git add crates/kotlin-ffi/android/src/main/kotlin/com/reown/yttrium/uniffi/uniffi_yttrium
git add crates/kotlin-ffi/android/src/main/kotlin/com/reown/yttrium/uniffi/yttrium
if git diff --cached --quiet; then
echo "No changes to commit."
else
git commit -m "Add generated bindings for release: ${{ env.VERSION }}"
git push origin HEAD:$TARGET_BRANCH
fi
git commit -m "Add generated bindings for release: ${{ env.VERSION }}"
git push origin HEAD:$TARGET_BRANCH
- name: Prepare artifacts
run: |
Expand Down Expand Up @@ -124,8 +120,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: 0.2.71 #${{ env.VERSION }}
release_name: 0.2.71 #Yttrium ${{ env.VERSION }}
tag_name: 0.2.72 #${{ env.VERSION }}
release_name: 0.2.72 #Yttrium ${{ env.VERSION }}
draft: false
prerelease: false

Expand Down
2 changes: 1 addition & 1 deletion .jitpack.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ android:

build:
script:
- RELEASE_URL="https://github.com/reown-com/yttrium/releases/download/0.2.71/kotlin-artifacts.zip"
- RELEASE_URL="https://github.com/reown-com/yttrium/releases/download/0.2.72/kotlin-artifacts.zip"
- curl -L -o kotlin-artifacts.zip $RELEASE_URL
- unzip kotlin-artifacts.zip -d binaries/
- mkdir -p crates/kotlin-ffi/android/src/main/jniLibs/arm64-v8a
Expand Down
2 changes: 1 addition & 1 deletion crates/kotlin-ffi/android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ publishing {
// Customize POM details
groupId = 'com.github.reown-com'
artifactId = 'yttrium'
version = '0.2.71'
version = '0.2.72'

pom {
name.set("Yttrium")
Expand Down

0 comments on commit 39e11d0

Please sign in to comment.