mirror of
https://github.com/cryptoadvance/specter-desktop.git
synced 2026-08-13 12:33:29 +02:00
11 lines
398 B
Bash
11 lines
398 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
payload="{\"ref\":\"master\", \"inputs\": {\"tag\": \"${CI_COMMIT_TAG}\"}}"
|
||
|
|
echo $payload
|
||
|
|
# This Token is controlled by https://github.com/AaronDewes
|
||
|
|
|
||
|
|
curl -X POST -H "Accept: application/vnd.github.v3+json" -H "Authorization: token ${AARON_TOKEN}" \
|
||
|
|
https://api.github.com/repos/lncm/docker-specter-desktop/actions/workflows/dispatch.yml/dispatches -d @<(cat <<EOF
|
||
|
|
$payload
|
||
|
|
EOF
|
||
|
|
)
|