Skip to content

Commit

Permalink
v2.5.7
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Nov 26, 2020
1 parent 1fb4b5f commit b8a9c81
Show file tree
Hide file tree
Showing 3 changed files with 25 additions and 56 deletions.
53 changes: 1 addition & 52 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,7 @@ jobs:
- name: Coveralls
run: coveralls
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
#COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}

coveralls-finish:
needs: test
Expand Down Expand Up @@ -74,54 +73,4 @@ jobs:
draft: false
prerelease: false

## sphinx:
## needs: test
## runs-on: ubuntu-latest
## if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
## steps:
## - uses: actions/checkout@v2
## - name: Set up Python ${{ matrix.python-version }}
## uses: actions/setup-python@v2
## with:
## python-version: 3.8
## - name: Install dependencies
## run: |
## python -m pip install --upgrade pip
## python -m pip install -r requirements-ci.txt
## python -m pip install -e .
## - name: Sphinx Build
## working-directory: sphinx
## run: |
## make html
## touch _build/html/.nojekyll
## - name: Deploy
## uses: JamesIves/github-pages-deploy-action@3.7.1
## with:
## GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
## BRANCH: gh-pages
## FOLDER: sphinx/_build/html
## CLEAN: true
##
## pypi:
## needs: test
## runs-on: ubuntu-latest
## if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
## steps:
## - uses: actions/checkout@v2
## - name: Set up Python ${{ matrix.python-version }}
## uses: actions/setup-python@v2
## with:
## python-version: 3.8
## - name: Install dependencies
## run: |
## python -m pip install --upgrade pip
## python -m pip install -r requirements-ci.txt
## python -m pip install -e .
## - name: Create distributions
## run: python setup.py sdist
## - name: Publish a Python distribution to PyPI
## uses: pypa/gh-action-pypi-publish@master
## with:
## user: __token__
## password: ${{ secrets.PYPI_TOKEN }}

26 changes: 23 additions & 3 deletions .github/workflows/doc.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,29 @@ on:
types: [created]

jobs:
deploy:
sphinx:
runs-on: ubuntu-latest
steps:
- name: DOc DOc
run: echo ${{ github.ref }}
- uses: actions/checkout@v2
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install -r requirements-ci.txt
python -m pip install -e .
- name: Sphinx Build
working-directory: sphinx
run: |
make html
touch _build/html/.nojekyll
- name: Deploy
uses: JamesIves/github-pages-deploy-action@3.7.1
with:
GITHUB_TOKEN: ${{ secrets.PAT }}
BRANCH: gh-pages
FOLDER: sphinx/_build/html
CLEAN: true

2 changes: 1 addition & 1 deletion pymlconf/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
ConfigurationNotInitializedError


__version__ = '2.5.6'
__version__ = '2.5.7'

0 comments on commit b8a9c81

Please sign in to comment.