File tree Expand file tree Collapse file tree 3 files changed +18
-33
lines changed
Expand file tree Collapse file tree 3 files changed +18
-33
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 2121 - name : Tests
2222 run : make test
2323
24+ - name : Build the site in the jekyll/builder container
25+ run : |
26+ docker run \
27+ -v ${{ github.workspace }}:/srv/jekyll -v ${{ github.workspace }}/_site:/srv/jekyll/_site \
28+ jekyll/builder:latest /bin/bash -c "chmod 777 /srv/jekyll && jekyll build --future"
29+
2430 - name : Upload coverage to Codecov
2531 run : bash <(curl -s https://codecov.io/bash)
32+
33+ publish :
34+ needs : test
35+ if : " success() && startsWith(github.ref, 'refs/tags/')"
36+ runs-on : ubuntu-latest
37+ steps :
38+ - name : Publish package to PyPI
39+ uses : pypa/gh-action-pypi-publish@master
40+ with :
41+ user : __token__
42+ password : ${{ secrets.pypi_password }}
Original file line number Diff line number Diff line change 11from distutils .version import StrictVersion
22
33# start from a fresh number 4 to identify jinja verison
4- VERSION = StrictVersion ('4.3.0 ' )
4+ VERSION = StrictVersion ('4.3.1 ' )
You can’t perform that action at this time.
0 commit comments