We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47779bc commit 179dc05Copy full SHA for 179dc05
pelican/action.yml
@@ -56,6 +56,12 @@ runs:
56
WORKDIR: /opt/pelican-asf # where to build GFM
57
GFM_VERSION: '0.28.3.gfm.12' # ensure we agree with build-cmark.sh script
58
run: |
59
+ # Does the GFM build already exist?
60
+ if [[ -n $LIBCMARKDIR && -d $LIBCMARKDIR ]]
61
+ then
62
+ echo "Already have GFM binary at $LIBCMARKDIR, skipping build"
63
+ exit 0 # nothing more to do in this step
64
+ fi
65
{
66
# disable stdout unless debug is on
67
if [ "${{ inputs.debug }}" == 'true' ]
0 commit comments