Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ jobs:
sh -x /usr/src/build-extra/please.sh mention feature "Snapshot of $(git show -s --pretty='tformat:%h (%s, %ad)' --date=short FETCH_HEAD)" &&
git -C /usr/src/build-extra bundle create "$PWD/bundle-artifacts/build-extra.bundle" origin/main..main
- name: 'Publish bundle-artifacts'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: bundle-artifacts
path: bundle-artifacts
Expand Down Expand Up @@ -127,7 +127,7 @@ jobs:

sh -x /usr/src/build-extra/please.sh build-mingw-w64-git --only-32-bit -o artifacts HEAD
- name: Publish mingw-w64-${{env.ARCH_NAME}}-git
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pkg-${{env.ARCH_NAME}}
path: artifacts
Expand All @@ -138,7 +138,7 @@ jobs:
run: |
tar czf build-installers.tgz build-installers/
- name: Publish build-installers.tgz
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: build-installers.tgz
path: build-installers.tgz
Expand Down Expand Up @@ -195,7 +195,7 @@ jobs:
cp "$p"/*-pdb* cached-source-packages/ &&
GIT_CONFIG_PARAMETERS="'windows.sdk${{env.ARCH_BITNESS}}.path='" ./please.sh bundle_pdbs --arch=${{env.ARCH_NAME}} --directory="$a" installer/package-versions.txt)
- name: Publish ${{matrix.artifact}}-${{env.ARCH_NAME}}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{matrix.artifact}}-${{env.ARCH_NAME}}
path: artifacts
Expand All @@ -216,7 +216,7 @@ jobs:
"${env:ProgramFiles(x86)}\Git\mingw${{env.ARCH_BITNESS}}\bin" | Out-File -Encoding ascii -Append $env:GITHUB_PATH
- name: Publish installer log
if: matrix.artifact == 'installer' && (failure() || success())
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: installer.log
path: installer.log
Expand Down