Merge pull request #3471 from hosseinsh/aut0mate-bump-version
Automate bump version
This commit is contained in:
commit
5e5e72ca86
|
@ -18,6 +18,16 @@ jobs:
|
||||||
uses: actions/setup-python@v2
|
uses: actions/setup-python@v2
|
||||||
with:
|
with:
|
||||||
python-version: '3.x'
|
python-version: '3.x'
|
||||||
|
- name: Autobump version
|
||||||
|
run: |
|
||||||
|
# from refs/tags/v0.8.1 get 0.8.1
|
||||||
|
VERSION=$(echo $GITHUB_REF | sed 's#.*/v##')
|
||||||
|
PLACEHOLDER='__version__ = "develop"'
|
||||||
|
VERSION_FILE='lemur/__about__.py'
|
||||||
|
# in case placeholder is missing, exists with code 1 and github actions aborts the build
|
||||||
|
grep "$PLACEHOLDER" "$VERSION_FILE"
|
||||||
|
sed -i "s/$PLACEHOLDER/__version__ = \"${VERSION}\"/g" "$VERSION_FILE"
|
||||||
|
shell: bash
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
|
|
|
@ -15,7 +15,7 @@ __title__ = "lemur"
|
||||||
__summary__ = "Certificate management and orchestration service"
|
__summary__ = "Certificate management and orchestration service"
|
||||||
__uri__ = "https://github.com/Netflix/lemur"
|
__uri__ = "https://github.com/Netflix/lemur"
|
||||||
|
|
||||||
__version__ = "0.8.0"
|
__version__ = "develop"
|
||||||
|
|
||||||
__author__ = "The Lemur developers"
|
__author__ = "The Lemur developers"
|
||||||
__email__ = "security@netflix.com"
|
__email__ = "security@netflix.com"
|
||||||
|
|
Loading…
Reference in New Issue