We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a5547ac commit 1dee6ceCopy full SHA for 1dee6ce
Makefile
@@ -92,7 +92,7 @@ generateCheckoutTest: build/spec $(openapi-generator-jar)
92
## Releases
93
94
version:
95
- perl -lne 'print "currentVersion=$$1" if /version=''(.+)'',/' < setup.py >> "$$GITHUB_OUTPUT"
+ grep version= setup.py | tr -d \', | awk -F '=' '{ printf "currentVersion=%s\n", $$2 }' >> "$$GITHUB_OUTPUT"
96
97
bump:
98
perl -i -pe 's/$$ENV{"CURRENT_VERSION"}/$$ENV{"NEXT_VERSION"}/' setup.py Adyen/settings.py
setup.cfg
@@ -1,7 +1,7 @@
1
[bdist_wheel]
2
3
[metadata]
4
-description-file = README.md
+description_file = README.md
5
6
[egg_info]
7
tag_build =
0 commit comments