Hi there, I tried to manage my space using github actions so i followed the github actions doc in huggingface doc and when i tried to execute the workflow it showed error. I literally did everything huggingface team wrote in the doc still it failed. can anybody help?
hi @iamgianna ,
Can you share a bit more? Could you read the GH action logs?
One suggestion, this is on recent Space I’ve worked on, it uses a special GH Workflow which I recommend
Feel free to use it as a template
Don’t forget
And add you HF_TOKEN
under you repo
https://github.com/USER/REPO/settings/secrets/actions/
Hey @radames
I am woking on a search engine project and I wanna integrate Redis’s in memory database to my project. I tried deploying Redis using the Docker sdk so I used this following Dockerfile and it failed showed- “Failed to write PID file: Permission denied” you can check the files and logs also I disabled the snapshotting.
FROM redis
COPY redis.conf /usr/local/etc/redis/redis.conf
CMD [ “redis-server”, “/usr/local/etc/redis/redis.conf” ]