🚀 Release #73
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
# ------------------------------------------------------------------------------------- | |
# | |
# Copyright (c) 2024, WSO2 LLC. (https://www.wso2.com). | |
# | |
# WSO2 LLC. licenses this file to you under the Apache License, | |
# Version 2.0 (the "License"); you may not use this file except | |
# in compliance with the License. | |
# You may obtain a copy of the License at | |
# | |
# http://www.apache.org/licenses/LICENSE-2.0 | |
# | |
# Unless required by applicable law or agreed to in writing, | |
# software distributed under the License is distributed on an | |
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY | |
# KIND, either express or implied. See the License for the | |
# specific language governing permissions and limitations | |
# under the License. | |
# | |
# -------------------------------------------------------------------------------------- | |
# This workflow will release the packages. | |
name: 🚀 Release | |
on: | |
workflow_dispatch: | |
inputs: | |
sdkType: | |
type: choice | |
description: Choose which sdk you want to release | |
default: 'android' | |
options: | |
- android | |
version: | |
type: choice | |
description: Choose which version to bump before release | |
default: 'patch' | |
options: | |
- major | |
- minor | |
- patch | |
env: | |
GH_TOKEN: ${{ secrets.RELEASE_BOT_TOKEN }} | |
BOT_USERNAME: ${{ secrets.RELEASE_BOT_USER_NAME }} | |
BOT_EMAIL: ${{ secrets.RELEASE_BOT_EMAIL }} | |
NEXUS_USERNAME: ${{ secrets.NEXUS_USERNAME }} | |
NEXUS_PASSWORD: ${{ secrets.NEXUS_PASSWORD }} | |
ANDROID_SCRIPT_DIR: .github/workflows/scripts/android | |
jobs: | |
release: | |
name: 📦 Release | |
if: "!contains(github.event.head_commit.message, 'ci skip') && !contains(github.event.head_commit.message, 'skip ci')" | |
runs-on: ubuntu-latest | |
steps: | |
- name: ⬇️ Checkout | |
id: checkout | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ env.GH_TOKEN }} | |
fetch-depth: 0 | |
- name: 🦾 Set up Git Bot | |
run: | | |
git config user.name ${{ env.BOT_USERNAME }} | |
git config user.email ${{ env.BOT_EMAIL }} | |
- name: ☕️ Set up Adopt JDK 17 | |
if: ${{ github.event.inputs.sdkType == 'android'}} | |
uses: actions/setup-java@v3 | |
with: | |
java-version: "17" | |
distribution: "adopt" | |
- name: 🤖 Release Android SDKs | |
working-directory: ${{ env.ANDROID_SCRIPT_DIR }} | |
if: ${{ github.event.inputs.sdkType == 'android' }} | |
run: bash ./android_sdk_release.sh ${{ github.event.inputs.version }} ${{ env.NEXUS_USERNAME }} ${{ env.NEXUS_PASSWORD }} ${{ env.GH_TOKEN }} ${{ github.run_number }} ${{ github.repository }} |