Compare commits

..

No commits in common. "063a3d637fd9958320693744edb3ca1dc0ca8a35" and "6267e0baf816f996af75bea33e4e5f69817ab961" have entirely different histories.

2 changed files with 4 additions and 14 deletions

View file

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

View file

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