mirror of
https://github.com/Clortox/drone-ntfy.git
synced 2026-03-15 05:58:00 +00:00
Compare commits
5 Commits
Documentat
...
pipeline-r
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
58d59d7aec | ||
|
|
7ab1061904 | ||
|
|
4bab19d289 | ||
|
|
0ca6b05d20 | ||
|
|
cd40495ff4 |
@@ -26,3 +26,6 @@ steps:
|
||||
MESSAGE: Drone-ntfy has finished building!
|
||||
CLICK: https://drone.clortox.com/tyler/drone-ntfy
|
||||
TITLE: Drone (drone-ntfy)
|
||||
when:
|
||||
branch:
|
||||
- main
|
||||
|
||||
13
main.sh
13
main.sh
@@ -6,7 +6,6 @@ Priority=${PLUGIN_PRIORITY:-}
|
||||
Title=${PLUGIN_TITLE:-}
|
||||
Tags=${PLUGIN_TAGS:-}
|
||||
Click=${PLUGIN_CLICK:-}
|
||||
|
||||
Attach=${PLUGIN_ATTACH:-}
|
||||
Icon=${PLUGIN_ICON:-}
|
||||
|
||||
@@ -33,5 +32,13 @@ if [[ ! -z $Click ]]; then
|
||||
Click="-H Click:$Click"
|
||||
fi
|
||||
|
||||
curl $Priority $Title $Tags $Click -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
#echo curl $Priority $Title $Tags $Click -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
if [[ ! -z $Attach ]]; then
|
||||
Attach="-H Attach:$Attach"
|
||||
fi
|
||||
|
||||
if [[ ! -z $Icon ]]; then
|
||||
Icon="-H Icon:$Icon"
|
||||
fi
|
||||
|
||||
curl $Priority $Title $Tags $Click $Attach $Icon -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
#curl $Priority $Title $Tags $Click $Attach $Icon -u $Username:$Password -d "$Message" $URL/$Topic
|
||||
|
||||
Reference in New Issue
Block a user