Merge pull request #1670 from 0chain/update/common #4868
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: GoSDK Release | |
concurrency: | |
group: "sdk-${{ github.ref }}" | |
cancel-in-progress: true | |
on: | |
push: | |
branches: [ master, staging, qa, sprint-*] | |
workflow_dispatch: | |
inputs: | |
version: | |
description: '0Chain SDK version' | |
required: true | |
base: | |
description: the target branch to which PRs should be raised | |
default: sprint-1.11 | |
required: true | |
env: | |
ACTIONS_ALLOW_UNSECURE_COMMANDS: true | |
jobs: | |
release: | |
name: sdk-release | |
runs-on: [self-hosted, build] | |
steps: | |
- name: start to create pr | |
run: | | |
echo "GoSDK & WebAssembly SDK should be upgraded" | |
create-pr: | |
name: create-pr | |
strategy: | |
fail-fast: false | |
max-parallel: 1 | |
matrix: | |
repo: [0box, 0dns, zwalletcli, zboxcli, blobber, zs3server, s3-migration, token_bridge_authserver ] | |
needs: [ release ] | |
runs-on: [self-hosted, build] | |
steps: | |
- name: Extract branch or version name | |
shell: bash | |
run: | | |
GITHUB_REF=$(echo $GITHUB_REF | sed -e "s#refs/heads/##g") | |
echo $GITHUB_REF | |
echo ${{ github.event_name }} | |
echo "branch=${{ github.event_name == 'workflow_dispatch' && github.event.inputs.version || '$GITHUB_REF' }}" >> $GITHUB_ENV | |
echo "base=${{ github.event_name == 'workflow_dispatch' && github.event.inputs.base || '$GITHUB_REF' }}" >> $GITHUB_ENV | |
id: extract_branch | |
- name: Create PR on ${{ matrix.repo }} | |
uses: convictional/[email protected] | |
with: | |
owner: 0chain | |
repo: ${{ matrix.repo }} | |
ref: staging | |
github_token: ${{ secrets.GOSDK }} | |
workflow_file_name: gosdk.yml | |
client_payload: '{"gosdk": "${{ env.branch }}", "base": "${{ env.base }}"}' | |
propagate_failure: true | |
trigger_workflow: true | |
wait_workflow: true |