Skip to content

Commit

Permalink
# Description
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
dmtzs committed Dec 19, 2023
2 parents 9cf2916 + b04dfb4 commit 2debc82
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,11 @@ jobs:

- name: Set commit message and version as env variables
run: |
set -e
echo "COMMIT_MESSAGE<<EOF" >> $GITHUB_ENV
git log --format='%B' -n 1 >> $GITHUB_ENV
echo "EOF" >> $GITHUB_ENV
echo "VERSION=$(jq -r .version config.json)" >> $GITHUB_ENV
echo "VERSION=$(awk -F' = ' '/^version = /{print $2}' setup.cfg)" >> $GITHUB_ENV
- name: Install gh
run: |
Expand Down

0 comments on commit 2debc82

Please sign in to comment.