I’m admittedly very green when it comes to gitea. I’m trying to use the devcontainers/ci github action within my pipeline but everytime the pipeline runs, it complains that the workspace folder doesn’t exist.
[2024-10-09T01:56:46.398Z] docker: Error response from daemon: invalid mount config for type "bind": bind source path does not exist: /workspace/ken/red.
In the previous step of the pipeline, I’ve confirmed that the current working directory actually is: /workspace/ken/red
, so I’m not sure why the error message is coming up. If anyone has any suggestions for what I’m doing wrong, or how I can possibly debug this more thoroughly, I’d be really grateful.
This is probably the smallest pipeline I can create to demonstrate the problem:
name: Test Name
run-name: Test run-name 🚀
on: [push]
jobs:
Test-Job:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: pwd
- uses: devcontainers/ci@v0.3
with:
# Change this to be your CI task/script
runCmd: cat /etc/os-release