Skip to content

Commit

Permalink
add step to update package lists when installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
ngoan1608 committed Jun 20, 2024
1 parent e487b45 commit 24a3df1
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ jobs:
build-n-publish:
name: Build and publish to PyPI
runs-on: ubuntu-latest
permissions:
contents: write

steps:
- name: Checkout source
Expand All @@ -22,6 +24,7 @@ jobs:

- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y pandoc
sudo apt-get install -y texlive-latex-*
echo "GENDOC_LATEXPATH=$(dirname $(which pdflatex))" >> $GITHUB_ENV
Expand All @@ -36,6 +39,7 @@ jobs:
- name: Publish distribution to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
skip-existing: true
password: ${{ secrets.PYPI_API_TOKEN }} # This token should be created in Settings > Secrets > Actions
# repository_url: https://test.pypi.org/legacy/ # Use this for testing to upload the distribution to test.pypi

Expand Down
Binary file modified JsonPreprocessor/JsonPreprocessor.pdf
Binary file not shown.
4 changes: 2 additions & 2 deletions JsonPreprocessor/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,6 @@
#
# Version and date of JsonPreprocessor
#
VERSION = "0.7.0"
VERSION_DATE = "18.06.2024"
VERSION = "0.7.1"
VERSION_DATE = "20.06.2024"

3 changes: 3 additions & 0 deletions packagedoc/additional_docs/History.tex
Original file line number Diff line number Diff line change
Expand Up @@ -72,4 +72,7 @@
- Improved error messages\newline
- Fixed bugs}

\historyversiondate{0.7.1}{06/2024}
\historychange{Maintained release workflow}

\end{packagehistory}

0 comments on commit 24a3df1

Please sign in to comment.