Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/ci-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
shell: bash
run: mkdir artifacts && (cd minimal-sdk && tar cvf - * .[0-9A-Za-z]*) | gzip -1 >artifacts/git-sdk-aarch64-minimal.tar.gz
- name: upload minimal-sdk artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: minimal-sdk
path: artifacts/git-sdk-aarch64-minimal.tar.gz
Expand All @@ -60,7 +60,7 @@ jobs:
shell: bash
run: tar -C .. -czf git-artifacts.tar.gz --exclude '*.a' --exclude '*.o' --exclude .git --exclude .depend git
- name: upload git artifacts for testing
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: git-artifacts
path: git-artifacts.tar.gz
Expand All @@ -84,7 +84,7 @@ jobs:
../minimal-sdk-extra/git-sdk-aarch64-minimal.7z.exe * .?*)
- name: upload minimal-sdk-extra artifacts
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: minimal-sdk-extra
path: minimal-sdk-extra
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/git-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,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 @@ -119,7 +119,7 @@ jobs:
git commit -s -m "mingw-w64-git: new version ($version)" PKGBUILD &&
git bundle create "$b"/MINGW-packages.bundle origin/main..main)
- name: Publish ${{env.MINGW_PACKAGE_PREFIX}}-git
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: pkg-${{env.ARCHITECTURE}}
path: artifacts
Expand All @@ -130,7 +130,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 @@ -187,7 +187,7 @@ jobs:
cp "$p"/*-pdb* cached-source-packages/ &&
GIT_CONFIG_PARAMETERS="'windows.sdk${{env.SDK_REPO_ARCH}}.path='" ./please.sh bundle_pdbs --arch=${{env.ARCHITECTURE}} --directory="$a" installer/package-versions.txt)
- name: Publish ${{matrix.artifact}}-${{env.ARCHITECTURE}}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{matrix.artifact}}-${{env.ARCHITECTURE}}
path: artifacts
Expand All @@ -208,7 +208,7 @@ jobs:
"$env:ProgramFiles\Git\${{env.MINGW_PREFIX}}\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