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 168e8b8 commit abf787dCopy full SHA for abf787d
.github/workflows/build-distributions.yml
@@ -56,10 +56,9 @@ jobs:
56
57
steps:
58
- name: Checkout code
59
- if: ${{ !inputs.version }}
60
uses: actions/checkout@v4
61
with:
62
- fetch-depth: 0
+ fetch-depth: ${{ inputs.version && 1 || 0 }}
63
64
- name: Set up QEMU
65
if: matrix.job.emulation
@@ -143,10 +142,9 @@ jobs:
143
142
144
145
146
147
148
149
150
151
- name: Download distribution
152
run: curl -LO ${{ env.DIST_URL }}/${{ env.DIST_VERSION }}/cpython-${{ env.DIST_PYTHON_VERSION }}+${{ env.DIST_VERSION }}-${{ matrix.job.target }}-install_only.tar.gz
0 commit comments