Publish Package #14
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: Publish Package | |
on: | |
workflow_dispatch: | |
inputs: | |
run_tests: | |
description: 'If true, run unit tests, otherwise skip them.' | |
type: boolean | |
default: true | |
dry_run: | |
description: 'Is this a dry run. If so no package will be published.' | |
type: boolean | |
required: true | |
prerelease: | |
description: 'If true, then this is a prerelease and should be published to the staging repository only.' | |
type: boolean | |
required: true | |
workflow_call: | |
inputs: | |
run_tests: | |
description: 'If true, run unit tests, otherwise skip them.' | |
required: false | |
type: boolean | |
default: true | |
dry_run: | |
description: 'Is this a dry run. If so no package will be published.' | |
type: boolean | |
required: true | |
prerelease: | |
description: 'If true, then this is a prerelease and should be published to the staging repository only.' | |
type: boolean | |
required: true | |
jobs: | |
build-and-publish: | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
contents: read | |
steps: | |
- uses: actions/checkout@v4 | |
- name: CI check | |
uses: ./.github/actions/ci | |
with: | |
run_tests: ${{ inputs.run_tests }} | |
android_api_level: '25' | |
java_version: '17' | |
- uses: launchdarkly/gh-actions/actions/release-secrets@release-secrets-v1.1.0 | |
name: Get secrets | |
with: | |
aws_assume_role: ${{ vars.AWS_ROLE_ARN }} | |
ssm_parameter_pairs: '/production/common/releasing/sonatype/username = SONATYPE_USER_NAME, | |
/production/common/releasing/sonatype/password = SONATYPE_PASSWORD, | |
/production/common/releasing/android_code_signing/private_key_id = SIGNING_KEY_ID, | |
/production/common/releasing/android_code_signing/private_key_passphrase = SIGNING_KEY_PASSPHRASE' | |
s3_path_pairs: 'launchdarkly-releaser/android/code-signing-keyring.gpg = code-signing-keyring.gpg' | |
- name: Publish | |
uses: ./.github/actions/publish | |
with: | |
dry_run: ${{ inputs.dry_run }} | |
prerelease: ${{ inputs.prerelease }} | |
signing_key_id: ${{ env.SIGNING_KEY_ID }} | |
signing_key_passphrase: ${{ env.SIGNING_KEY_PASSPHRASE }} | |
code_signing_keyring: ${{ github.workspace }}/code-signing-keyring.gpg | |
sonatype_username: ${{ env.SONATYPE_USER_NAME }} | |
sonatype_password: ${{ env.SONATYPE_PASSWORD }} | |
- name: Publish Documentation | |
uses: ./.github/actions/publish-docs | |
with: | |
dry_run: ${{ inputs.dry_run }} | |
token: ${{secrets.GITHUB_TOKEN}} |