Skip to content

Commit 8202108

Browse files
authored
Merge pull request #15 from miaow2/develop
Fix secrets in publish CI
2 parents 9f68c01 + 3093cbb commit 8202108

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,5 @@ jobs:
2323
- name: Publish
2424
env:
2525
TWINE_USERNAME: __token__
26-
TWINE_PASSWORD: ${{ secrets.PYPI_PASS }}
26+
TWINE_PASSWORD: ${{ secrets.PYPI_TOKEN }}
2727
run: python -m twine upload dist/*

netbox_config_diff/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
__author__ = "Artem Kotik"
44
__email__ = "miaow2@yandex.ru"
5-
__version__ = "0.1.0"
5+
__version__ = "1.0.0"
66

77

88
class ConfigDiffConfig(PluginConfig):

0 commit comments

Comments
 (0)