-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add jitpack openjdk. add release_please integration
Signed-off-by: vahid torkaman <[email protected]>
- Loading branch information
1 parent
24013d1
commit 280ac88
Showing
3 changed files
with
77 additions
and
2 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,71 @@ | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- '*' | ||
|
||
name: Run Release Please | ||
jobs: | ||
release-please: | ||
runs-on: ubuntu-latest | ||
|
||
# Release-please creates a PR that tracks all changes | ||
steps: | ||
# - uses: google-github-actions/release-please-action@ca6063f4ed81b55db15b8c42d1b6f7925866342d # v3 | ||
# id: release | ||
# with: | ||
# command: manifest | ||
# token: ${{secrets.GITHUB_TOKEN}} | ||
# default-branch: main | ||
# | ||
# The logic below handles the github release: | ||
- name: Cache Gradle and wrapper | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- uses: actions/checkout@v1 | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
|
||
- name: Set up JDK 12 | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 12 | ||
|
||
- name: Grant Permission for Gradlew to Execute | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
run: chmod +x gradlew | ||
|
||
- name: Build AAR ⚙️🛠 | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
run: bash ./gradlew :openfeature:assemble | ||
- name: Create Release ✅ | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
OF_KOTLIN_RELEASE_VERSION: 0.0.1 | ||
with: | ||
tag_name: ${{ env.OF_KOTLIN_RELEASE_VERSION }} | ||
release_name: ${{ env.OF_KOTLIN_RELEASE_VERSION }} | ||
draft: true | ||
prerelease: false | ||
|
||
- name: Upload Openfeature SDK AAR 🗳 | ||
# if: ${{ steps.release.outputs.releases_created }} | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: OpenFeature/build/outputs/aar/OpenFeature-release.aar | ||
asset_name: openfeature-sdk.aar | ||
asset_content_type: application/aar |
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 |
---|---|---|
@@ -0,0 +1,2 @@ | ||
jdk: | ||
- openjdk11 |