fixing curl
Some checks failed
Build Docker Image / Docker-Build (push) Successful in 12s
Build Docker Image / Clean-Registry (push) Failing after 2s

Signed-off-by: Stephan Richter <s.richter@srsoftware.de>
This commit is contained in:
2026-01-03 22:39:03 +01:00
parent de68e19231
commit 7c3bf83f74
2 changed files with 7 additions and 7 deletions

View File

@@ -47,7 +47,7 @@ jobs:
steps:
- name: Get tag list
run: |
TAGS=curl -su "${{ secrets.REGISTRY_USER }}:${{ secrets.REGISTRY_PASS }}" https://${{ secrets.REGISTRY_PATH }}/v2/umbrella/tags/list \
TAGS=curl -s -u "${{ secrets.REGISTRY_USER }}:${{ secrets.REGISTRY_PASS }}" https://${{ secrets.REGISTRY_PATH }}/v2/umbrella/tags/list \
| jq -r ".tags[]" \
| head -n $(( $(wc -l) - 5))
for TAG in $TAGS: do

View File

@@ -1,11 +1,11 @@
FROM alpine:3.22 AS svelte_build
RUN apk add bash git npm
RUN adduser -Dh /home/svelte svelte
ADD . /home/svelte/Umbrella
RUN chown -R svelte /home/svelte/Umbrella
USER svelte
WORKDIR /home/svelte/Umbrella/frontend
RUN npm install && npm run build
#RUN adduser -Dh /home/svelte svelte
#ADD . /home/svelte/Umbrella
#RUN chown -R svelte /home/svelte/Umbrella
#USER svelte
#WORKDIR /home/svelte/Umbrella/frontend
#RUN npm install && npm run build