Skip to content

Commit

Permalink
New version for testing CI/CD: 2020.3.27
Browse files Browse the repository at this point in the history
  • Loading branch information
foosel committed Mar 27, 2020
1 parent bc6d050 commit feeba84
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/ci-cd-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ jobs:

publish-on-testpypi:
name: 📦 Publish on TestPyPI
if: github.event_name == 'push'
needs: build
runs-on: ubuntu-latest
steps:
Expand All @@ -40,13 +41,14 @@ jobs:
path: dist
- name: 📦 Publish to index
uses: pypa/gh-action-pypi-publish@master
continue-on-error: true
with:
password: ${{ secrets.testpypi_password }}
repository_url: https://test.pypi.org/legacy/

publish-on-pypi:
name: 📦 Publish tagged releases to PyPI
if: startsWith(github.event.ref, 'refs/tags')
if: github.event_name == 'release'
needs: build
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
plugin_name = "OctoPrint-FirmwareCheck"

# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
plugin_version = "2020.03.26"
plugin_version = "2020.03.27"

# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
# module
Expand Down

0 comments on commit feeba84

Please sign in to comment.