test actions expressions
This commit is contained in:
parent
fe91d6e67c
commit
16343d11b8
3 changed files with 8 additions and 1 deletions
6
.github/workflows/release.yml
vendored
6
.github/workflows/release.yml
vendored
|
@ -19,6 +19,12 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
python -m pip install --upgrade pip
|
python -m pip install --upgrade pip
|
||||||
pip install pybuilder ddadevops deprecation setuptools
|
pip install pybuilder ddadevops deprecation setuptools
|
||||||
|
|
||||||
|
- debug:
|
||||||
|
run: |
|
||||||
|
echo ${{ github.tag }}
|
||||||
|
echo ${{ github.tag == '[0-9]+.[0-9]+.[0-9]' }}
|
||||||
|
echo ${{ github.tag != '[0-9]+.[0-9]+.[0-9]' }}
|
||||||
|
|
||||||
- name: build stable release
|
- name: build stable release
|
||||||
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]' }}
|
if: ${{ github.tag == '[0-9]+.[0-9]+.[0-9]' }}
|
||||||
|
|
|
@ -217,6 +217,7 @@ def rotate_credentials_out(project):
|
||||||
|
|
||||||
## Release
|
## Release
|
||||||
1. git commit -am "release"
|
1. git commit -am "release"
|
||||||
|
1. git tag -am "release" version
|
||||||
2. git push --follow-tags
|
2. git push --follow-tags
|
||||||
3. increase version no in build.py
|
3. increase version no in build.py
|
||||||
4. git commit -am "version bump"
|
4. git commit -am "version bump"
|
||||||
|
|
2
build.py
2
build.py
|
@ -28,7 +28,7 @@ use_plugin("python.distutils")
|
||||||
default_task = "publish"
|
default_task = "publish"
|
||||||
|
|
||||||
name = "ddadevops"
|
name = "ddadevops"
|
||||||
version = "0.8.8.dev"
|
version = "0.8.9.dev"
|
||||||
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
summary = "tools to support builds combining gopass, terraform, dda-pallet, aws & hetzner-cloud"
|
||||||
description = __doc__
|
description = __doc__
|
||||||
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
authors = [Author("meissa GmbH", "buero@meissa-gmbh.de")]
|
||||||
|
|
Loading…
Reference in a new issue