-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Description
Previous config:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true
Gitversion now errors with "unsupported extension name extensions.worktreeconfig"
I was able to fix it with:
uses: actions/checkout@v4
with:
fetch-depth: 0
ssh-key: ${{ secrets.SSH_PRIVATE_KEY }}
- name: fix git
run: |
git config --unset-all extensions.worktreeconfig || true
git config --global --list
- name: Install GitVersion
uses: gittools/actions/gitversion/setup@v0
with:
versionSpec: "5.x"
- name: Determine Version
id: gitversion
uses: gittools/actions/gitversion/execute@v0
with:
useConfigFile: true
mlahargou, ardelato, gg-sr, ahmedelgabri, guidobouman and 2 more
Metadata
Metadata
Assignees
Labels
No labels