Skip to content
This repository was archived by the owner on Sep 10, 2025. It is now read-only.

Commit 38b8e2f

Browse files
committed
update actions/upload-artifact
1 parent 1a90cb3 commit 38b8e2f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -12,22 +12,22 @@ name: CI
1212
jobs:
1313
build:
1414
name: Build
15-
runs-on: '${{ matrix.os }}'
15+
runs-on: "${{ matrix.os }}"
1616
strategy:
1717
matrix:
1818
include:
1919
- os: macos-latest
2020
target: aarch64-apple-darwin
21-
suffix: ''
21+
suffix: ""
2222
- os: macos-latest
2323
target: x86_64-apple-darwin
24-
suffix: ''
24+
suffix: ""
2525
- os: ubuntu-latest
2626
target: x86_64-unknown-linux-musl
27-
suffix: ''
27+
suffix: ""
2828
- os: ubuntu-latest
2929
target: x86_64-unknown-linux-gnu
30-
suffix: ''
30+
suffix: ""
3131
- os: windows-latest
3232
target: x86_64-pc-windows-msvc
3333
suffix: .exe
@@ -51,7 +51,7 @@ jobs:
5151
- name: Make binary executable
5252
run: chmod u+x ./target/${{ matrix.target }}/release/tool-new-release${{ matrix.suffix }}
5353
- name: Archive production artifacts
54-
uses: actions/upload-artifact@v2
54+
uses: actions/upload-artifact@v4
5555
with:
5656
name: tool-new-release-${{ matrix.target }}
5757
path: ./target/${{ matrix.target }}/release/tool-new-release${{ matrix.suffix }}

0 commit comments

Comments
 (0)