Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/workflows/image-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,13 @@ jobs:
steps:
- uses: actions/checkout@v4

- name: Remove GitHub credentials from git config
run: |
# Remove the GitHub token from git config to prevent secret leakage in container
git config --unset-all http.https://github.com/.extraheader || true
# Reconfigure for anonymous access (public repo)
git remote set-url origin https://github.com/openshift-psap/forge

- name: Determine tags
id: tags
run: |
Expand Down
Loading