Updated PubNub Js sdk containing membership type. #222
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: Automated product release | |
on: | |
pull_request: | |
branches: [master] | |
types: [closed] | |
jobs: | |
check-release: | |
name: Check release required | |
if: github.event.pull_request.merged && endsWith(github.repository, '-private') != true | |
runs-on: | |
group: macos-gh | |
outputs: | |
release: ${{ steps.check.outputs.ready }} | |
steps: | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '21' | |
- name: Checkout actions | |
uses: actions/checkout@v4 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- id: check | |
name: Check pre-release completed | |
uses: ./.github/.release/actions/actions/checks/release | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
publish: | |
name: Publish package | |
needs: check-release | |
if: needs.check-release.outputs.release == 'true' | |
runs-on: | |
group: macos-gh | |
steps: | |
- name: Install JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'zulu' # See 'Supported distributions' for available options | |
java-version: '21' | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
with: | |
# This should be the same as the one specified for on.pull_request.branches | |
ref: master | |
- name: Checkout actions | |
uses: actions/checkout@v4 | |
with: | |
repository: pubnub/client-engineering-deployment-tools | |
ref: v1 | |
token: ${{ secrets.GH_TOKEN }} | |
path: .github/.release/actions | |
- name: Publish to Maven | |
uses: ./.github/.release/actions/actions/services/maven | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
nexus-username: ${{ secrets.NEXUS_USERNAME }} | |
nexus-password: ${{ secrets.NEXUS_PASSWORD }} | |
gpg-key-id: ${{ secrets.GPG_KEY_ID }} | |
gpg-key-name: ${{ secrets.GPG_KEY_NAME }} | |
gpg-key-passphrase: ${{ secrets.GPG_KEY_PASSPHRASE }} | |
maven-plugin: "new-gradle-nexus-publish" | |
prepend-product-to-tag: true | |
- name: Create Release | |
uses: ./.github/.release/actions/actions/services/github-release | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
prepend-product-to-tag: true | |
- name: Update Pages | |
uses: ./.github/.release/actions/actions/services/github-pages | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
source-folder: build/dokka/gfmMultiModule | |
jira-api-key: ${{ secrets.JIRA_API_KEY }} | |
last-service: true | |
- name: Upload test reports | |
uses: ./.github/.release/actions/actions/test-reports/upload | |
with: | |
token: ${{ secrets.GH_TOKEN }} | |
acceptance-tests-workflow: Tests |