3
0

gitea actions ng3

This commit is contained in:
Michael Otto
2026-03-17 10:39:02 +01:00
parent b11b505d66
commit 646cffb29a

View File

@@ -15,7 +15,7 @@ on:
required: true
jobs:
update-plugin:
release-plugin:
runs-on: alpine-latest
defaults:
run:
@@ -25,4 +25,19 @@ jobs:
- name: Abhängigkeiten installieren
shell: sh
run: |
apk add --no-cache bash jq git
apk add --no-cache bash
- name: Payload dekodieren
id: payload
run: |
DECODED=$(echo "${{ github.event.inputs.payload }}" | base64 -d)
echo "version=$(echo "$DECODED" | jq -r '.version')" >> $GITHUB_OUTPUT
echo "channel=$(echo "$DECODED" | jq -r '.channel')" >> $GITHUB_OUTPUT
echo "prerelease=$(echo "$DECODED" | jq -r '.prerelease')" >> $GITHUB_OUTPUT
echo "zip_folder=$(echo "$DECODED" | jq -r '.zip_folder')" >> $GITHUB_OUTPUT
echo "version=$(echo "$DECODED" | jq -r '.version')"
echo "channel=$(echo "$DECODED" | jq -r '.channel')"
echo "prerelease=$(echo "$DECODED" | jq -r '.prerelease')"
echo "zip_folder=$(echo "$DECODED" | jq -r '.zip_folder')"