Skip to content

Commit

Permalink
Doxygen gen: Remove symlink and replace with folder
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-josi-aws committed May 23, 2024
1 parent fcc4727 commit a205ea2
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions doxygen-generation/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,9 @@ runs:
run: |
jq '.releases|=if index("${{ inputs.ref }}") then . else ["${{ inputs.ref }}"]+. end' _data/doc_config.json > tmp.json
mv tmp.json _data/doc_config.json
rm -f latest
ln -s "${{ inputs.ref }}" latest
rm -rf latest
mkdir latest
cp -r "${{ inputs.ref }}"/* latest
- name: Commit new doxygen
working-directory: ./doxygen_store
Expand All @@ -123,4 +124,4 @@ runs:
if [ -n "$changed" ]; then
git commit -m "Doxygen for ${commit_id}"
git push origin gh-pages
fi
fi

0 comments on commit a205ea2

Please sign in to comment.