From 215b712dabc2ef4309a3c9482945e204e5687372 Mon Sep 17 00:00:00 2001 From: Logan Drescher Date: Sun, 22 Sep 2024 12:08:49 -0400 Subject: [PATCH] Disabling Pandoc --- .github/workflows/ci.yml | 30 +++++++++++++++--------------- 1 file changed, 15 insertions(+), 15 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index e75af58..a534133 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -161,19 +161,19 @@ jobs: env: POETRY_PYPI_TOKEN_PYPI: ${{ secrets.PYPI_TOKEN }} run: | - # Install pandoc - sudo apt-get update -y - sudo apt-get install -y --no-install-recommends wget - - wget https://github.com/jgm/pandoc/releases -O /tmp/pandocVersions.html - urlPart=`grep "\.deb" /tmp/pandocVersions.html | head -n 1 | cut -d'/' -f2-7 | cut -d'"' -f1` - wget "https://github.com/$urlPart" -O /tmp/pandoc.deb - sudo dpkg -i /tmp/pandoc.deb - rm /tmp/pandocVersions.html - rm /tmp/pandoc.deb - - # Convert README to .rst format - pandoc --from=gfm --output=README.rst --to=rst README.md +# # Install pandoc +# sudo apt-get update -y +# sudo apt-get install -y --no-install-recommends wget +# +# wget https://github.com/jgm/pandoc/releases -O /tmp/pandocVersions.html +# urlPart=`grep "\.deb" /tmp/pandocVersions.html | head -n 1 | cut -d'/' -f2-7 | cut -d'"' -f1` +# wget "https://github.com/$urlPart" -O /tmp/pandoc.deb +# sudo dpkg -i /tmp/pandoc.deb +# rm /tmp/pandocVersions.html +# rm /tmp/pandoc.deb +# +# # Convert README to .rst format +# pandoc --from=gfm --output=README.rst --to=rst README.md # Build and Publish poetry build @@ -182,7 +182,7 @@ jobs: ############################################# ## Form-fill the versions to the container and to `biosimulators.json` ############################################# - - name: Update the version of the simulator + - name: Update versioning in "Dockerfile" and "biosimulators.json" if: steps.check-new-release.outputs.needDeploy == 'true' run: | containerLabel=${{ steps.get-docker-image-tag.outputs.dockerImageBaseUrl }}:${{ steps.get-docker-image-tag.outputs.simulatorVersion }} @@ -309,7 +309,7 @@ jobs: with: tag_name: ${{ steps.get-tagged-version.outputs.version }} release_name: Release ${{ steps.get-tagged-version.outputs.version }} - + ############################################# ## Commit and push new version of simulator #############################################