Skip to content

Commit 2debc82

Browse files
authored
# Description
* Security policy updated * Pylint action updated correctly to gihub standards * Added github action to validate the new release is not repeated * Enhancements in doc strings inside the library * Updated some third party actions used inside the same github actions created by me * Instead of using integers inside the library now are the same but using the http library * The creation of new releases are automated now, so publish to pypi is automated too from the beginning
2 parents 9cf2916 + b04dfb4 commit 2debc82

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/release.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030

3131
- name: Set commit message and version as env variables
3232
run: |
33+
set -e
3334
echo "COMMIT_MESSAGE<<EOF" >> $GITHUB_ENV
3435
git log --format='%B' -n 1 >> $GITHUB_ENV
3536
echo "EOF" >> $GITHUB_ENV
36-
echo "VERSION=$(jq -r .version config.json)" >> $GITHUB_ENV
37+
echo "VERSION=$(awk -F' = ' '/^version = /{print $2}' setup.cfg)" >> $GITHUB_ENV
3738
3839
- name: Install gh
3940
run: |

0 commit comments

Comments
 (0)