Compare commits

...

10 Commits

Author SHA1 Message Date
44a210d658 Update CI files. 2025-12-18 09:13:52 -06:00
024540c8b3 Update CI files. 2025-12-17 23:45:23 -06:00
278a9867e1 Update CI files. 2025-12-17 22:42:48 -06:00
5c7234a1ca Update CI files. 2025-12-17 22:19:08 -06:00
7baa519a82 Update CI files. 2025-12-17 22:18:38 -06:00
0c70b94f31 Update CI files. 2025-12-17 22:18:05 -06:00
1630206ae2 Update CI files. 2025-12-17 21:50:41 -06:00
7eebc25b8e Update CI files. 2025-12-17 21:49:05 -06:00
b30c1edfcf Update CI files. 2025-12-17 21:48:14 -06:00
f2050f9b32 Update CI files. 2025-12-17 21:42:40 -06:00

View File

@@ -1,5 +1,5 @@
steps:
build-and-push:
build-and-push-to-registry:
image: woodpeckerci/plugin-docker-buildx:5.1
settings:
username:
@@ -13,13 +13,9 @@ steps:
context: .
push: true
when:
event: push
branch:
- main
not:
event: manual
event: manual
pull-container:
publish-webapp:
image: docker:cli
volumes:
- /var/run/docker.sock:/var/run/docker.sock
@@ -33,9 +29,7 @@ steps:
commands:
- echo "$REGISTRY_PASSWORD" | docker login registry.binderlab.io --username "$REGISTRY_USERNAME" --password-stdin
- docker pull registry.binderlab.io/harbormaster-client:latest
- docker create --name temp-harbormaster-client registry.binderlab.io/harbormaster-client:latest
- pwd
- docker cp temp-harbormaster-client:/app/. $DEPLOY_PATH
- docker rm temp-harbormaster-client
- docker rm temp-harbormaster-client || true
- docker run --rm -v "$DEPLOY_PATH":/out registry.binderlab.io/harbormaster-client:latest sh -c "cp -r /app/. /out"
when:
event: manual