File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3030
3131 publish-on-testpypi :
3232 name : 📦 Publish on TestPyPI
33+ if : github.event_name == 'push'
3334 needs : build
3435 runs-on : ubuntu-latest
3536 steps :
@@ -40,13 +41,14 @@ jobs:
4041 path : dist
4142 - name : 📦 Publish to index
4243 uses : pypa/gh-action-pypi-publish@master
44+ continue-on-error : true
4345 with :
4446 password : ${{ secrets.testpypi_password }}
4547 repository_url : https://test.pypi.org/legacy/
4648
4749 publish-on-pypi :
4850 name : 📦 Publish tagged releases to PyPI
49- if : startsWith( github.event.ref, 'refs/tags')
51+ if : github.event_name == 'release'
5052 needs : build
5153 runs-on : ubuntu-latest
5254 steps :
Original file line number Diff line number Diff line change 1414plugin_name = "OctoPrint-FirmwareCheck"
1515
1616# The plugin's version. Can be overwritten within OctoPrint's internal data via __plugin_version__ in the plugin module
17- plugin_version = "2020.03.26 "
17+ plugin_version = "2020.03.27 "
1818
1919# The plugin's description. Can be overwritten within OctoPrint's internal data via __plugin_description__ in the plugin
2020# module
You can’t perform that action at this time.
0 commit comments