Skip to content

Commit be7c334

Browse files
chore: add shell to action steps
1 parent 9bb4d53 commit be7c334

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

action.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,16 +53,18 @@ runs:
5353
using: composite
5454
steps:
5555
- name: Generate Code Documentation
56+
shell: bash
5657
if: inputs.should-generate-code-documentation == 'true'
5758
run: ${{ inputs.code-documentation-generation-command }} -outputDir ${{ inputs.code-documentation-dst-folder }}
5859
- name: Generate Swagger OpenAPI Documentation
5960
if: inputs.should-generate-openapi-documentation == 'true'
6061
uses: Legion2/swagger-ui-action@v1
61-
with:
62-
output: ${{ inputs.openapi-documentation-dst-folder }}
63-
spec-file: ${{ inputs.openapi-documentation-input-file }}
62+
with:
63+
output: ${{ inputs.openapi-documentation-dst-folder }}
64+
spec-file: ${{ inputs.openapi-documentation-input-file }}
6465
- name: Generate AsyncAPI Documentation
6566
if: inputs.should-generate-asyncapi-documentation == 'true'
67+
shell: bash
6668
run: |
6769
npm install -g @asyncapi/generator@1.9.17
6870
ag ${{ inputs.asyncapi-documentation-input-file }} @asyncapi/html-template -o ${{ inputs.asyncapi-documentation-dst-folder }}

0 commit comments

Comments
 (0)