-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Docker Folder #14
base: master
Are you sure you want to change the base?
Docker Folder #14
Conversation
github actions file may also need to be updated to reflect the new dockerfile paths urNode/.github/workflows/publish-image.yml Lines 35 to 54 in c3a43fe
|
@@ -36,6 +36,7 @@ jobs: | |||
- name: Build and publish a Docker image for ${{ github.repository }} | |||
uses: macbre/push-to-ghcr@master | |||
with: | |||
#dockerfile: Docker/Dockerfile |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
this part may actually have to be uncommented, otherwise the action may look for Dockerfile
in the repository root location and not the Docker/
folder.
you can check these changes work or result in error by manually triggering the action.
you can do that by visiting the actions tab in your fork and you will see a button "Run workflow" from which you can manually trigger the docker build action (below image is from my fork's action tab)
well well, looks like this is still open |
this solves #11