forked from bahacan19/android-seatview
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
21d7300
commit 24b193c
Showing
2 changed files
with
126 additions
and
26 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 |
---|---|---|
@@ -1,26 +1,74 @@ | ||
name: Android CI | ||
|
||
name: Release | ||
on: | ||
push: | ||
branches: [ "master" ] | ||
pull_request: | ||
branches: [ "master" ] | ||
release: | ||
types: [created] | ||
|
||
jobs: | ||
build: | ||
|
||
publish: | ||
name: Release OzanSuperApp's Library | ||
runs-on: ubuntu-latest | ||
permissions: write-all | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: set up JDK 11 | ||
uses: actions/setup-java@v3 | ||
with: | ||
java-version: '11' | ||
distribution: 'temurin' | ||
cache: gradle | ||
|
||
- name: Grant execute permission for gradlew | ||
run: chmod +x gradlew | ||
- name: Build with Gradle | ||
run: ./gradlew build | ||
- uses: actions/checkout@v1 | ||
|
||
- name: Set up JDK 12 | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 12 | ||
|
||
- name: Cache Gradle and wrapper | ||
uses: actions/cache@v2 | ||
with: | ||
path: | | ||
~/.gradle/caches | ||
~/.gradle/wrapper | ||
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }} | ||
restore-keys: | | ||
${{ runner.os }}-gradle- | ||
- name: Grant Permission for Gradlew to Execute | ||
run: chmod +x gradlew | ||
|
||
- name: Build AAR ⚙️🛠 | ||
run: bash ./gradlew :viewpagerdotsindicator:assemble | ||
|
||
- name: Publish to GitLab Package Registry 🚀 | ||
run: bash ./gradlew :viewpagerdotsindicator:publish | ||
env: | ||
GPR_USER: ${{ github.actor }} | ||
GPR_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITLAB_REPO_URL: ${{ secrets.GITLAB_REPO_URL }} | ||
GITLAB_DEPLOY_KEY: ${{ secrets.GITLAB_DEPLOY_KEY }} | ||
GITLAB_DEPLOY_TOKEN: ${{ secrets.GITLAB_DEPLOY_TOKEN }} | ||
|
||
- name: Create Release ✅ | ||
id: create_release | ||
uses: actions/create-release@v1 | ||
env: | ||
GPR_USER: ${{ github.actor }} | ||
GPR_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITLAB_REPO_URL: ${{ secrets.GITLAB_REPO_URL }} | ||
GITLAB_DEPLOY_KEY: ${{ secrets.GITLAB_DEPLOY_KEY }} | ||
GITLAB_DEPLOY_TOKEN: ${{ secrets.GITLAB_DEPLOY_TOKEN }} | ||
with: | ||
tag_name: ${{ github.ref }} | ||
release_name: ${{ github.ref }} | ||
draft: true | ||
prerelease: false | ||
|
||
- name: Upload OzanSuperApp's Library AAR 🗳 | ||
uses: actions/upload-release-asset@v1 | ||
env: | ||
GPR_USER: ${{ github.actor }} | ||
GPR_KEY: ${{ secrets.GITHUB_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
GITLAB_REPO_URL: ${{ secrets.GITLAB_REPO_URL }} | ||
GITLAB_DEPLOY_KEY: ${{ secrets.GITLAB_DEPLOY_KEY }} | ||
GITLAB_DEPLOY_TOKEN: ${{ secrets.GITLAB_DEPLOY_TOKEN }} | ||
with: | ||
upload_url: ${{ steps.create_release.outputs.upload_url }} | ||
asset_path: seatview/build/outputs/aar/seatview-release.aar | ||
asset_name: seatview.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