Skip to content

Commit 069ddd9

Browse files
One test file
1 parent a1acd4e commit 069ddd9

File tree

3 files changed

+18
-33
lines changed

3 files changed

+18
-33
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.

.github/workflows/tests.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,5 +21,22 @@ jobs:
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 }}

bootstrapform_jinja/meta.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from 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')

0 commit comments

Comments
 (0)