Skip to content

Commit

Permalink
use pandoc action from pandoc repo instead of local path
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfenner committed Sep 11, 2024
1 parent 8f79b56 commit c7276ae
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/render.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ jobs:
# Render the document with diffs in the 'pr' mode.
- name: Render
if: inputs.workflow == 'pr'
uses: ./.github/actions/render
uses: trustedcomputinggroup/pandoc/.github/actions/render
with:
input-md: ${{ inputs.input }}
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}
Expand All @@ -90,7 +90,7 @@ jobs:
# Render the document with diffs in the 'manual' mode.
- name: Render
if: inputs.workflow == 'manual'
uses: ./.github/actions/render
uses: trustedcomputinggroup/pandoc/.github/actions/render
with:
input-md: ${{ inputs.input }}
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}
Expand All @@ -99,7 +99,7 @@ jobs:
# Render the document without diffs in other modes.
- name: Render
if: inputs.workflow != 'pr' && inputs.workflow != 'manual'
uses: ./.github/actions/render
uses: trustedcomputinggroup/pandoc/.github/actions/render
with:
input-md: ${{ inputs.input }}
output-basename: ${{ steps.gen_output_name.outputs.OUTPUT_FILENAME }}
Expand Down

0 comments on commit c7276ae

Please sign in to comment.