Skip to content

Commit feeba84

Browse files
committed
New version for testing CI/CD: 2020.3.27
1 parent bc6d050 commit feeba84

2 files changed

Lines changed: 4 additions & 2 deletions

File tree

.github/workflows/ci-cd-pipeline.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
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:

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
plugin_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

0 commit comments

Comments
 (0)