Skip to content

Commit 3260dbd

Browse files
authored
Fix suffix bz ==> bz2
1 parent 0616551 commit 3260dbd

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -83,14 +83,14 @@ jobs:
8383
working-directory: pyodide_checkout/
8484
run: |
8585
python tools/create_xbuildenv.py .
86-
tar cjf xbuildenv.tar.bz ./xbuildenv/
86+
tar cjf xbuildenv.tar.bz2 ./xbuildenv/
8787
8888
- name: Upload cross-build environment
8989
uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4.5.0
9090
with:
9191
name: cross-build-env
9292
path: |
93-
pyodide_checkout/xbuildenv.tar.bz
93+
pyodide_checkout/xbuildenv.tar.bz2
9494
if-no-files-found: error
9595
retention-days: 1
9696

@@ -117,7 +117,7 @@ jobs:
117117
uses: actions/attest-build-provenance@7668571508540a607bdfd90a87a560489fe372eb # v2.1.0
118118
with:
119119
subject-path: |
120-
dist/xbuildenv.tar.bz
120+
dist/xbuildenv.tar.bz2
121121
122122
- name: Calc release version
123123
id: release_version
@@ -132,12 +132,12 @@ jobs:
132132
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
133133
shell: bash
134134
run: |
135-
gh attestation verify dist/xbuildenv.tar.bz --repo ${{ github.repository }}
135+
gh attestation verify dist/xbuildenv.tar.bz2 --repo ${{ github.repository }}
136136
137137
- name: Create GitHub release with these wheels
138138
uses: softprops/action-gh-release@01570a1f39cb168c169c802c3bceb9e93fb10974 # v2.1.0
139139
with:
140140
files: |
141-
dist/*.tar.bz
141+
dist/*.tar.bz2
142142
fail_on_unmatched_files: true
143143
name: ${{ steps.release_version.outputs.release_version }}

0 commit comments

Comments
 (0)