File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change 66 pull_request :
77
88env :
9- PUBLISH_IMAGE : ${{ (github.ref_name == 'main' || github.ref_type == 'tag') && 'TRUE' || 'FALSE'}}
9+ # disabled publishing of docker images
10+ # re-enabling requires that you create a couple of repo secrets:
11+ # - secrets.USER_FOR_REGISTRY - username of a GitHub user that is able to login to the repository's docker registry
12+ # - secrets.PAT_FOR_REGISTRY - GitHub Personal Access Token of the GitHub user that grants it access to publish
13+ # docker images in the repo registry
14+ # PUBLISH_IMAGE: ${{ (github.ref_name == 'main' || github.ref_type == 'tag') && 'TRUE' || 'FALSE'}}
15+ PUBLISH_IMAGE : false
1016 IMAGE_TAG : ${{ github.ref_name == 'main' && 'latest' || github.ref_name }}
1117 IMAGE_NAME : ghcr.io/${{ github.repository }}/${{ github.event.repository.name }}
1218
You can’t perform that action at this time.
0 commit comments