v1.3.3 #29
Workflow file for this run
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
name: Release | |
on: | |
release: | |
types: [created] | |
jobs: | |
publish: | |
name: Release OzanSuperApp's Library | |
runs-on: ubuntu-latest | |
permissions: write-all | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v1 | |
with: | |
java-version: 17 | |
- 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.ANDROID_GITLAB_REPO_URL }} | |
GITLAB_DEPLOY_KEY: ${{ secrets.ANDROID_GITLAB_DEPLOY_KEY }} | |
GITLAB_DEPLOY_TOKEN: ${{ secrets.ANDROID_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.ANDROID_GITLAB_REPO_URL }} | |
GITLAB_DEPLOY_KEY: ${{ secrets.ANDROID_GITLAB_DEPLOY_KEY }} | |
GITLAB_DEPLOY_TOKEN: ${{ secrets.ANDROID_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.ANDROID_GITLAB_REPO_URL }} | |
GITLAB_DEPLOY_KEY: ${{ secrets.ANDROID_GITLAB_DEPLOY_KEY }} | |
GITLAB_DEPLOY_TOKEN: ${{ secrets.ANDROID_GITLAB_DEPLOY_TOKEN }} | |
with: | |
upload_url: ${{ steps.create_release.outputs.upload_url }} | |
asset_path: viewpagerdotsindicator/build/outputs/aar/viewpagerdotsindicator-release.aar | |
asset_name: viewpagerdotsindicator.aar | |
asset_content_type: application/aar |