You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A couple places in the docker build/push/pull/run scripts assume the github organization is nasa in the GHCR url. That leads to "permission denied" errors when I try to build or run the tests from my asjohnston-asf fork.
The first can be easily generalized by using ${{github.repository_owner}}, but I don't see a trivial fix for the second.
I was able to work around this by editing the owner in a separate branch and running the test action from that branch via workflow dispatch (after building the container from my feature branch).
The text was updated successfully, but these errors were encountered:
A couple places in the docker build/push/pull/run scripts assume the github organization is
nasa
in the GHCR url. That leads to "permission denied" errors when I try to build or run the tests from myasjohnston-asf
fork.The first can be easily generalized by using
${{github.repository_owner}}
, but I don't see a trivial fix for the second.I was able to work around this by editing the owner in a separate branch and running the test action from that branch via workflow dispatch (after building the container from my feature branch).
The text was updated successfully, but these errors were encountered: