Skip to content

Commit

Permalink
fix: version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Mips2648 committed May 12, 2024
1 parent 5aa7333 commit 1688857
Show file tree
Hide file tree
Showing 2 changed files with 35 additions and 1 deletion.
34 changes: 34 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Pipeline

on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
workflow_dispatch:

jobs:
pytest_39:
uses: ./.github/workflows/pytest-3.9.yml

pytest_311:
uses: ./.github/workflows/pytest-3.11.yml

release-on-success:
needs: [pytest_39, pytest_311]
if: ${{ github.repository == 'Mips2648/jeedom-daemon-py'}}
runs-on: ubuntu-latest
concurrency: release
permissions:
# id-token: write
contents: write

steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0

- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from setuptools import setup, find_packages

__version__ = "0.8.7"
__version__ = "0.8.6"

setup(
# Needed to silence warnings (and to be a worthwhile package)
Expand Down

0 comments on commit 1688857

Please sign in to comment.