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
14 changes: 7 additions & 7 deletions .github/workflows/build-tools.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:

steps:
- name: Checkout ${{ github.repository }}
uses: actions/checkout@v4
uses: actions/checkout@v6

- name: Configure runner
run: rustup target add ${{ matrix.arch }}-${{ matrix.platform }}
Expand All @@ -47,7 +47,7 @@ jobs:
shell: pwsh

- name: Upload binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.tool }}-${{ matrix.arch }}-${{ matrix.platform }}
path: ${{ steps.get-binary-path.outputs.binary-path }}
Expand All @@ -62,7 +62,7 @@ jobs:

steps:
- name: Download binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Setup CCTools
uses: Devolutions/actions-public/setup-cctools@v1
Expand All @@ -78,7 +78,7 @@ jobs:
shell: pwsh

- name: Upload binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.tool }}-universal-apple-darwin
path: ${{ matrix.tool }}-universal-apple-darwin/${{ matrix.tool }}
Expand Down Expand Up @@ -106,7 +106,7 @@ jobs:

steps:
- name: Download binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8

- name: Get binary path
id: get-binary-path
Expand Down Expand Up @@ -188,7 +188,7 @@ jobs:
shell: pwsh

- name: Upload binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.tool }}-${{ matrix.arch }}-${{ matrix.platform }}
path: ${{ steps.get-binary-path.outputs.binary-path }}
Expand All @@ -212,7 +212,7 @@ jobs:

- name: Upload package
if: ${{ matrix.platform == 'apple-darwin' && matrix.arch == 'universal' }}
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.tool }}-${{ matrix.arch }}-${{ matrix.platform }}
path: ${{ matrix.tool }}.dmg
Loading
Loading