Skip to content

Commit

Permalink
v2.4.11
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Nov 25, 2020
1 parent 912d4b7 commit e0ea510
Show file tree
Hide file tree
Showing 5 changed files with 34 additions and 61 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/documentation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Documentation

on:
release:
type: [ created ]

jobs:
sphinx:
runs-on: ubuntu-latest
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/[email protected]
with:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
BRANCH: gh-pages
FOLDER: sphinx/_build/html
CLEAN: true
27 changes: 0 additions & 27 deletions .github/workflows/release.yml

This file was deleted.

32 changes: 0 additions & 32 deletions .github/workflows/sphinx.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/test-coverage.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# This workflow will install Python dependencies, run tests and lint with a variety of Python versions
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-python-with-github-actions

name: Pytest & Coverage
name: Lint Test Coverage Release

on:
push:
Expand Down
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.4.10'
__version__ = '2.4.11'

0 comments on commit e0ea510

Please sign in to comment.