We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8c644b0 commit 47e80bfCopy full SHA for 47e80bf
.github/workflows/release.yml
@@ -71,11 +71,14 @@ jobs:
71
- name: git gc
72
run: |
73
git gc
74
+ - name: rename .git
75
+ run: |
76
+ mv .git git-dir
77
- uses: actions/upload-artifact@v4
78
with:
79
name: workdir-${{ matrix.pythonStandaloneVersion }} ${{ matrix.pythonVersion }}
80
path: |
- .git
81
+ git-dir
82
build-num
83
84
tests:
@@ -100,6 +103,9 @@ jobs:
100
103
- uses: actions/download-artifact@v4
101
104
102
105
106
+ - name: rename .git back
107
108
+ mv git-dir .git
109
- name: checkout tag
110
shell: bash
111
0 commit comments