mirror of
https://github.com/kubevirt/kubevirt.core.git
synced 2026-07-25 00:44:35 +00:00
fix(ci): set up git credential helper for checkout v7 compatibility
actions/checkout v7 changed credential persistence from http.extraheader to includeIf.gitdir-scoped config files. The collection-docs-action does not pick up the new credential format, breaking git push to gh-pages. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> Signed-off-by: Felix Matouschek <fmatouschek@redhat.com>
This commit is contained in:
7
.github/workflows/release.yml
vendored
7
.github/workflows/release.yml
vendored
@@ -58,6 +58,13 @@ jobs:
|
||||
run: |
|
||||
ansible-galaxy collection build .
|
||||
|
||||
- name: Set up git credentials
|
||||
run: |
|
||||
git config credential.helper \
|
||||
'!f() { echo "username=x-access-token"; echo "password=${GITHUB_TOKEN}"; }; f'
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
- name: Create changelog and documentation
|
||||
uses: ansible-middleware/collection-docs-action@main
|
||||
with:
|
||||
|
||||
Reference in New Issue
Block a user