12 Commits

Author SHA1 Message Date
Matthias Hinrichs 2021399a10 fix: füge ls-Befehl zur Überprüfung des Verzeichnisinhalts hinzu
Build And Test / build (push) Successful in 55s
Build And Test / Build and Publish Docker Image (push) Successful in 1m1s
2025-11-23 01:08:54 +01:00
Matthias Hinrichs 2cefdaa85d fix: füge ls-Befehl zur Ausgabe der Verzeichnisinhalte hinzu
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 39s
2025-11-23 00:59:56 +01:00
Matthias Hinrichs db0cde6497 fix: aktualisiere das Docker-Image auf v0.1.1
Build And Test / build (push) Successful in 55s
Build And Test / Build and Publish Docker Image (push) Successful in 38s
2025-11-23 00:50:13 +01:00
Matthias Hinrichs 89e353a135 fix: ändere das Basis-Image auf docker.hnrx.net/alpine:latest
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 40s
2025-11-23 00:38:32 +01:00
Matthias Hinrichs 1c60201ba8 fix: ändere das Basis-Image zurück auf alpine:latest
Build And Test / build (push) Successful in 50s
Build And Test / Build and Publish Docker Image (push) Failing after 34s
2025-11-22 03:36:14 +01:00
Matthias Hinrichs ea183a08b5 fix: aktualisiere das Docker-Image auf v0.1.0
Build And Test / build (push) Successful in 54s
Build And Test / Build and Publish Docker Image (push) Successful in 38s
2025-11-22 03:19:04 +01:00
Matthias Hinrichs eca6853b39 fix: korrigiere die Paketnamen für actions/artifact in renovate.json
Build And Test / build (push) Successful in 1m8s
Build And Test / Build and Publish Docker Image (push) Successful in 43s
2025-11-22 03:15:02 +01:00
Matthias Hinrichs 5bbd5745a8 fix: aktualisiere das Basis-Image auf mirror.gcr.io/alpine:latest
Build And Test / build (push) Successful in 58s
Build And Test / Build and Publish Docker Image (push) Successful in 1m3s
2025-11-22 03:08:47 +01:00
Matthias Hinrichs 0e4f439ba3 fix: aktualisiere das Schema und füge Paketregeln in renovate.json hinzu
Build And Test / build (push) Successful in 51s
Build And Test / Build and Publish Docker Image (push) Failing after 31s
2025-11-22 02:32:29 +01:00
Matthias Hinrichs ed25e4a200 chore(deps): downgrade actions/upload-artifact and actions/download-artifact to v3
Build And Test / build (push) Successful in 51s
Build And Test / Build and Publish Docker Image (push) Failing after 45s
2025-11-22 02:30:13 +01:00
matthias 641b503117 Merge pull request 'chore(deps): update actions/upload-artifact action to v5' (#14) from renovate/actions-upload-artifact-5.x into main
Build And Test / build (push) Failing after 1m3s
Build And Test / Build and Publish Docker Image (push) Has been skipped
Reviewed-on: #14
2025-11-22 01:25:59 +00:00
renovate-bot 36437b8b33 chore(deps): update actions/upload-artifact action to v5 2025-11-22 01:03:54 +00:00
4 changed files with 20 additions and 4 deletions
+3 -1
View File
@@ -45,7 +45,7 @@ jobs:
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login git.hnrx.net \
--username "${{ secrets.DOCKER_USERNAME }}" --password-stdin
- uses: actions/download-artifact@v6
- uses: actions/download-artifact@v3
with:
name: manage-servers-binary
path: .
@@ -61,6 +61,8 @@ jobs:
username = "${{ secrets.DOCKER_USERNAME }}"
password = "${{ secrets.DOCKER_PASSWORD }}"
- run: ls -lha
- name: Build and Push Docker latest Image
if: gitea.ref == 'refs/heads/main'
uses: docker/build-push-action@v6
+5 -1
View File
@@ -1,4 +1,4 @@
FROM alpine:latest
FROM docker.hnrx.net/alpine:latest
RUN mkdir /config
@@ -13,6 +13,10 @@ COPY index.html .
# Copy the servers.json file
# COPY servers.json .
RUN ls -la /root/
RUN chmod +x ./manage-servers
# Expose the port the web server listens on
EXPOSE 8080
+1 -1
View File
@@ -2,7 +2,7 @@ version: '3.8'
services:
manage-servers:
image: git.hnrx.net/hnrx/manage-servers:v0.0.2
image: git.hnrx.net/hnrx/manage-servers:v0.1.1
container_name: manage-servers
restart: unless-stopped
labels:
+11 -1
View File
@@ -1,3 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json"
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"packageRules": [
{
"packageNames": [
"@actions/artifact",
"actions/upload-artifact",
"actions/download-artifact"
],
"enabled": false
}
]
}