Use new drone plugin for releases
continuous-integration/drone/push Build is failing
Details
continuous-integration/drone/push Build is failing
Details
This commit is contained in:
parent
3d4f563e37
commit
f6e662de2c
15
.drone.yml
15
.drone.yml
|
@ -18,21 +18,22 @@ steps:
|
|||
commands:
|
||||
- apk add --update zip jq
|
||||
- cp /tmp/build/remote.exe /tmp/build/remote plugin/
|
||||
- cat plugin/manifest.json | jq -r '.Version' > /tmp/build/version.txt
|
||||
- VERSION=`cat plugin/manifest.json | jq -r '.Version'`
|
||||
- echo "v$VERSION" > /tmp/build/version.txt
|
||||
- mv plugin tf.meow.remote.sdPlugin
|
||||
- zip -r /tmp/build/tf.meow.remote.streamDeckPlugin tf.meow.remote.sdPlugin
|
||||
- name: release
|
||||
volumes:
|
||||
- name: cache
|
||||
path: /tmp/build
|
||||
image: alpine:latest
|
||||
image: tystuyfzand/drone-gitea-release
|
||||
settings:
|
||||
tag_file: /tmp/build.version.txt
|
||||
name_file: /tmp/build/version.txt
|
||||
files: [ '/tmp/build/tf.meow.remote.streamDeckPlugin' ]
|
||||
environment:
|
||||
TOKEN:
|
||||
PLUGIN_API_KEY:
|
||||
from_secret: gitea_token
|
||||
commands:
|
||||
- apk add --update curl
|
||||
- export VERSION=`cat /tmp/build/version.txt`
|
||||
- curl -F "server=https://git.meow.tf" -F "token=$TOKEN" -F "repo=$DRONE_REPO" -F "name=v$VERSION" -F "tag_name=v$VERSION" -F "commit=$DRONE_COMMIT" -F "assets[]=@/tmp/build/tf.meow.remote.streamDeckPlugin" https://api.meow.tf/gitea/release/publish
|
||||
volumes:
|
||||
- name: cache
|
||||
temp: {}
|
|
@ -51,7 +51,7 @@
|
|||
"Name": "Remote",
|
||||
"Icon": "images/pluginIcon",
|
||||
"URL": "https://www.elgato.com/gaming/stream-deck",
|
||||
"Version": "1.2.3",
|
||||
"Version": "1.2.4",
|
||||
"SDKVersion": 2,
|
||||
"OS": [
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue