diff --git a/.github/actions/akamai-purge-osx/action.yml b/.github/actions/akamai-purge-osx/action.yml index f02b6e256..59c56e9b4 100644 --- a/.github/actions/akamai-purge-osx/action.yml +++ b/.github/actions/akamai-purge-osx/action.yml @@ -5,17 +5,9 @@ inputs: description: The command from akamai purge command required: true default: invalidate - type: - description: Type of Ref, i.e. (tags, cpcode, url) - required: false - default: url - ref: - description: References tags, urls, etc + urls: + description: urls required: true - network: - description: Network (production or staging) - required: true - default: production runs: using: "composite" steps: @@ -29,7 +21,7 @@ runs: - name: Purge shell: bash run: | - akamai purge --edgerc ~/.edgerc --section ccu ${{ inputs.command }} ${{ inputs.network }} ${{ inputs.type }} ${{ inputs.ref }} + akamai purge --edgerc ~/.edgerc --section ccu ${{ inputs.command }} ${{ inputs.urls }} - name: Cleanup if: ${{ always() }} shell: bash diff --git a/.github/workflows/akamai-purge-cache.yml b/.github/workflows/akamai-purge-cache.yml index 9f5caa8ed..2f4afa64d 100644 --- a/.github/workflows/akamai-purge-cache.yml +++ b/.github/workflows/akamai-purge-cache.yml @@ -81,6 +81,4 @@ jobs: EDGERC: ${{ secrets.EDGERC }} with: command: invalidate - type: url - network: production - ref: ${{ needs.purge1.outputs.urls }} \ No newline at end of file + urls: ${{ needs.purge1.outputs.urls }} \ No newline at end of file