.drone.yml aktualisiert

This commit is contained in:
Peter Kessler 2026-05-12 12:58:50 +00:00
parent 35d63000f9
commit 7293f0cff9

View File

@ -42,26 +42,20 @@ steps:
- git config --global user.email "drone@ci.local" - git config --global user.email "drone@ci.local"
- git config --global user.name "Drone CI" - git config --global user.name "Drone CI"
# Remote setzen # Eigenes Repo klonen (mit Token-Auth)
#- git remote set-url origin https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2 - git clone https://kesslerpe96777:$GITEA_TOKEN@git.efi.th-nuernberg.de/gitea/kesslerpe96777/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline2
# Repo clonen # Branch wechseln oder neu erstellen
- git clone https://git.efi.th-nuernberg.de/gitea/freudenreichan/EinfuehrungInDocker_Pipeline2.git
- cd EinfuehrungInDocker_Pipeline
# Branch wechseln oder erstellen
- git checkout drone-artifacts || git checkout -b drone-artifacts - git checkout drone-artifacts || git checkout -b drone-artifacts
# Artifact löschen und neu hinzufügen # Altes Artifact löschen (|| true falls noch nicht da)
- git rm image.tar - git rm image.tar || true
- cp $DRONE_WORKSPACE/image.tar . - cp $DRONE_WORKSPACE/image.tar .
- git add image.tar - git add image.tar
# Commit nur wenn Änderungen vorhanden # Commit nur wenn Änderungen
- git commit -m "Add built Docker image [skip ci]" || echo "Nothing to commit" - git commit -m "Add built Docker image [skip ci]" || echo "Nothing to commit"
# Pull vor Push (um Konflikte zu vermeiden) # Push (-u beim ersten Mal damit der neue Branch upstream gesetzt wird)
- git pull || true - git push -u origin drone-artifacts
# Push
- git push