Skip to content

Commit

Permalink
fix: use header
Browse files Browse the repository at this point in the history
  • Loading branch information
idubnori committed Apr 21, 2024
1 parent 6adcb53 commit 568338e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@ runs:
continue-on-error: true # Continue even if repo or file is not existed
run: |
mkdir -p wiki_temp
gh api repos/${{ github.repository }}.wiki/contents/${{ inputs.page-name }} --raw > wiki_temp/${{ inputs.page-name }}
gh api \
-H "Accept: application/vnd.github.raw" \
repos/${{ github.repository }}.wiki/contents/${{ inputs.page-name }} > wiki_temp/${{ inputs.page-name }}
- name: Load configuraions and set to environment
shell: python
run: |
Expand Down

0 comments on commit 568338e

Please sign in to comment.