CI: confirm clone step to add tags and configure condition for steps
All checks were successful
ci/woodpecker/tag/woodpecker Pipeline was successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
Benjamin Renard 2022-04-27 23:04:17 +02:00
parent af616a3e2b
commit 063a3d637f
2 changed files with 11 additions and 3 deletions

View file

@ -1,3 +1,8 @@
clone:
git:
image: woodpeckerci/plugin-git
tags: true
pipeline:
test:
image: debian
@ -10,10 +15,14 @@ pipeline:
- echo /opt/instantclient_* > /etc/ld.so.conf.d/oracle-instantclient.conf
- ldconfig
- ./tests.sh --quiet
when:
event: push
build:
image: debian
when:
event: tag
tag: v*
branch: master
commands:
- DEBIAN_FRONTEND=noninteractive apt-get -qq update < /dev/null > /dev/null
- DEBIAN_FRONTEND=noninteractive apt-get -y -qq upgrade < /dev/null > /dev/null
@ -23,7 +32,9 @@ pipeline:
publish:
image: plugins/gitea-release
when:
event: tag
tag: v*
branch: master
settings:
api_key:
from_secret: gitea_token

View file

@ -9,9 +9,6 @@ cd $( dirname $0 )
echo "Clean previous build..."
rm -fr dist deb_dist
echo "Fetch git tags..."
git fetch --tags
echo "Detect version using git describe..."
VERSION="$( git describe --tags|sed 's/^[^0-9]*//' )"