Compare commits

...

2 commits

Author SHA1 Message Date
Bruno BELANYI 75d482cd6b flake: bump version to v0.1.2
All checks were successful
continuous-integration/drone/push Build is passing
2021-06-15 18:39:19 +02:00
Bruno BELANYI 261f3b27ec matrix-notifier: prefer tag in Drone message 2021-06-15 18:38:26 +02:00
2 changed files with 2 additions and 2 deletions

View file

@ -75,7 +75,7 @@
packages = {
matrix-notifier = pkgs.stdenvNoCC.mkDerivation rec {
pname = "matrix-notifier";
version = "0.1.1";
version = "0.1.2";
src = ./matrix-notifier;

View file

@ -38,7 +38,7 @@ rawurlencode() {
default_drone_message() {
local msg="Build ${DRONE_BUILD_STATUS}"
msg="$msg ${DRONE_SYSTEM_PROTO}://${DRONE_SYSTEM_HOST}/${DRONE_REPO}/${DRONE_BUILD_NUMBER}"
msg="$msg (${DRONE_BRANCH})"
msg="$msg (${DRONE_TAG:-$DRONE_BRANCH})"
printf '%s' "$msg"
}