Skip to content

Commit 4352d90

Browse files
authored
Fix run commands
1 parent 45242f6 commit 4352d90

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

action.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -66,18 +66,18 @@ runs:
6666
AWS_SECRET_ACCESS_KEY: ${{ inputs.aws-secret-access-key }}
6767
AWS_REGION: ${{ inputs.aws-region }}
6868
run: |
69-
techdocs-cli publish --publisher-type ${{ inputs.publisher-type }}
70-
--storage-name ${{ inputs.storage-name }}
69+
techdocs-cli publish --publisher-type ${{ inputs.publisher-type }} \
70+
--storage-name ${{ inputs.storage-name }} \
7171
--entity ${{ inputs.entity-namespace }}/${{ inputs.entity-type }}/${{ inputs.entity-name }}
7272
7373
- name: Publish TechDocs site to Azure Blob
7474
if: inputs.publisher-type == 'azureBlobStorage' && inputs.azure-account-name != '' && inputs.azure-account-key != ''
7575
shell: bash
7676
run: |
77-
techdocs-cli publish --publisher-type ${{ inputs.publisher-type }}
78-
--storage-name ${{ inputs.storage-name }}
79-
--entity ${{ inputs.entity-namespace }}/${{ inputs.entity-type }}/${{ inputs.entity-name }}
80-
--azureAccountName ${{ inputs.azure-account-name }}
77+
techdocs-cli publish --publisher-type ${{ inputs.publisher-type }} \
78+
--storage-name ${{ inputs.storage-name }} \
79+
--entity ${{ inputs.entity-namespace }}/${{ inputs.entity-type }}/${{ inputs.entity-name }} \
80+
--azureAccountName ${{ inputs.azure-account-name }} \
8181
--azureAccountKey ${{ inputs.azure-account-key }}
8282
8383
branding:

0 commit comments

Comments
 (0)