Compare commits

...

2 Commits

Author SHA1 Message Date
siujamo 0269683b68 fix: mount README.md to / not /data for docker-pushrm
Build and Deploy / build-and-release (release) Failing after 3m0s
The docker-pushrm image (busybox-based) has no WORKDIR set, defaulting
to /. FindReadmeFile() searches ./ relative to WORKDIR, so the file
must be at /README.md, not /data/ or /workspace/.
2026-06-08 14:46:19 +08:00
siujamo 3f2066f8b2 fix: update docker-pushrm README mount path from /workspace to /data
Build and Deploy / build-and-release (release) Failing after 3m49s
docker-pushrm v2 changed the WORKDIR from /workspace to /data, causing the
README push step to fail when using the :latest tag.
2026-06-08 14:14:05 +08:00
+1 -1
View File
@@ -78,7 +78,7 @@ jobs:
- name: Push README to Docker Hub - name: Push README to Docker Hub
run: > run: >
docker run --rm docker run --rm
-v "$(pwd)/README.md:/workspace/README.md:ro" -v "$(pwd)/README.md:/README.md:ro"
-e DOCKER_USER="${{ vars.DOCKER_HUB_USERNAME }}" -e DOCKER_USER="${{ vars.DOCKER_HUB_USERNAME }}"
-e DOCKER_PASS="${{ secrets.DOCKER_HUB_TOKEN }}" -e DOCKER_PASS="${{ secrets.DOCKER_HUB_TOKEN }}"
chko/docker-pushrm:latest chko/docker-pushrm:latest