Skip to content

Commit

Permalink
v2.4.9
Browse files Browse the repository at this point in the history
  • Loading branch information
pylover committed Nov 25, 2020
1 parent 406559f commit 808009e
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions .github/workflows/test-coverage.yml
Expand Up @@ -54,14 +54,21 @@ jobs:
run: coveralls --finish
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Echo git ref
run: echo ${{ github.ref }}

publish:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
steps:
- name: Echo git ref
run: echo ${{ github.ref }}

- name: Checkout code
uses: actions/checkout@v2
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false
2 changes: 1 addition & 1 deletion pymlconf/__init__.py
Expand Up @@ -6,4 +6,4 @@
ConfigurationNotInitializedError


__version__ = '2.4.8'
__version__ = '2.4.9'

0 comments on commit 808009e

Please sign in to comment.