3
0

gitea actions ng30

This commit is contained in:
Michael Otto
2026-03-18 06:52:02 +01:00
parent 977466a026
commit d44900afd7

View File

@@ -237,10 +237,21 @@ jobs:
echo "== Neuer Inhalt von changelog.txt ==" echo "== Neuer Inhalt von changelog.txt =="
head -n 5 "$FILE" head -n 5 "$FILE"
git status cd ~
pwd
env: env:
FILE: "changelog.txt" FILE: "changelog.txt"
VERSION: ${{ steps.daten.outputs.version }} VERSION: ${{ steps.daten.outputs.version }}
#PRERELEASE: ${{ steps.daten.outputs.prerelease }}
#CHANNEL: ${{ steps.daten.outputs.channel }} - name: Repository aktualisieren
run: |
cd plugin
git add metadata.txt changelog.txt
git commit -m "Release $VERSION"
git push origin "$CHANNEL"
env:
CHANNEL: ${{ steps.daten.outputs.channel }}
VERSION: ${{ steps.daten.outputs.version }}
RELEASE_TOKEN: ${{ secrets.RELEASE_TOKEN }}