Try ensuring the checkout is not depth=1
This commit is contained in:
parent
fe1c5e1d99
commit
be52d51517
1 changed files with 2 additions and 1 deletions
3
.github/workflows/test.yml
vendored
3
.github/workflows/test.yml
vendored
|
@ -10,6 +10,8 @@ jobs:
|
||||||
python-version: ["3.11"]
|
python-version: ["3.11"]
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
|
with:
|
||||||
|
fetch-depth: 0
|
||||||
- name: Set up Python ${{ matrix.python-version }}
|
- name: Set up Python ${{ matrix.python-version }}
|
||||||
uses: actions/setup-python@v5
|
uses: actions/setup-python@v5
|
||||||
with:
|
with:
|
||||||
|
@ -29,6 +31,5 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git fetch origin
|
git fetch origin
|
||||||
git checkout -b release origin/release
|
git checkout -b release origin/release
|
||||||
git pull
|
|
||||||
git merge --no-ff origin/main
|
git merge --no-ff origin/main
|
||||||
git push origin release
|
git push origin release
|
Loading…
Add table
Reference in a new issue