Skip to content

Warning

You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?

ali-cdn-sdk

Actions
aliCloud cdn sdk
v0.0.5
Star (5)

aliCloud cdn action

This action provides aliCloud cdn sdk.

Inputs

accessKeyId

Required Access key id.

appSecret

Required App secret.

action

Required Action name.

parameters

Action parameters, JSON array with "key" & "value", example: { "DomainName": "xxx.xxx.com", "FunctionNames": "back_to_origin_url_rewrite" }.

version

Sdk version. Default "2018-05-10".

Outputs

result

Sdk invoking result.

Example usage

Get config id of your cdn domain, and then using it to rewrite the "back_to_origin_url".

steps:
  - name: Get Cdn Domain Configs
    uses: iou90/[email protected]
    id: getCdnDomainConfigs
    with:
      accessKeyId: accessKeyId
      appSecret: appSecret
      action: DescribeCdnDomainConfigs
      parameters: '{ "DomainName": "xxx.xxx.com", "FunctionNames": "back_to_origin_url_rewrite" }'
  - name: Set Cdn Action Parameters
    id: setCdnAction
    run: |
      export configId=$(echo $result | jq '.DomainConfigs.DomainConfig[0].ConfigId')
      echo $configId
      export target_url=xxx
      export functionsValue=$(printf '[{"functionName":"back_to_origin_url_rewrite","functionArgs":[{"argName":"source_url","argValue":"source_url"},{"argName":"target_url","argValue":%s}],"configId":%s}]' $target_url $configId) 
      export normalizedFunctions=$(echo $functionsValue | jq --raw-input)
      export actionParameters=$(printf '{ "DomainNames": "xxx.xxx.com", "Functions": %s }' $normalizedFunctions)
      echo $actionParameters
      echo ::set-output name=parameters::$(echo $actionParameters)
    env:
      result: ${{ steps.getCdnDomainConfigs.outputs.result }}
  - name: Rewrite back_to_origin_url
    uses: iou90/[email protected]
    with:
      accessKeyId: accessKeyId
      appSecret: appSecret
      action: BatchSetCdnDomainConfig
      parameters:  ${{ steps.setCdnAction.outputs.parameters }}

ali-cdn-sdk is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.

About

aliCloud cdn sdk
v0.0.5

ali-cdn-sdk is not certified by GitHub. It is provided by a third-party and is governed by separate terms of service, privacy policy, and support documentation.