td #2
This commit is contained in:
parent
59f97a3c68
commit
5f9cbae736
4 changed files with 26 additions and 3 deletions
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -1,6 +1,8 @@
|
||||||
name: build
|
name: build
|
||||||
on:
|
on:
|
||||||
never
|
push:
|
||||||
|
tags:
|
||||||
|
- never
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
name: test
|
name: stable
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
tags:
|
tags:
|
21
.github/workflows/unstable.yml
vendored
Normal file
21
.github/workflows/unstable.yml
vendored
Normal file
|
@ -0,0 +1,21 @@
|
||||||
|
name: unstable
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
branches:
|
||||||
|
- master
|
||||||
|
tags:
|
||||||
|
- *
|
||||||
|
- '![0-9]+.[0-9]+.[0-9]+'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build:
|
||||||
|
name: test-my build
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
|
||||||
|
- name: debug
|
||||||
|
run: |
|
||||||
|
echo ${{ github.ref }}
|
||||||
|
echo ${{ github.ref == '[0-9]+.[0-9]+.[0-9]+' }}
|
||||||
|
echo ${{ github.ref != '[0-9]+.[0-9]+.[0-9]+' }}
|
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.9.dev"
|
version = "0.8.10.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