Skip to content
Open
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
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- id: build
run: ARCH=amd64 assets/github_scripts/build.sh

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-amd64
path: lidm-amd64
Expand All @@ -42,7 +42,7 @@ jobs:
- id: build
run: ARCH=i386 assets/github_scripts/build.sh CFLAGS="-O3 -Wall -m32"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-i386
path: lidm-i386
Expand Down Expand Up @@ -70,7 +70,7 @@ jobs:
- if: always()
run: set +e; cat gss.out >>"$GITHUB_STEP_SUMMARY"; cat go.out >>"$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-aarch64
path: lidm-aarch64
Expand Down Expand Up @@ -98,7 +98,7 @@ jobs:
- if: always()
run: set +e; cat gss.out >>"$GITHUB_STEP_SUMMARY"; cat go.out >>"$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-armv7
path: lidm-armv7
Expand Down Expand Up @@ -126,7 +126,7 @@ jobs:
- if: always()
run: set +e; cat gss.out >>"$GITHUB_STEP_SUMMARY"; cat go.out >>"$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-riscv64
path: lidm-riscv64
Expand Down Expand Up @@ -155,7 +155,7 @@ jobs:
- if: always()
run: set +e; cat gss.out >>"$GITHUB_STEP_SUMMARY"; cat go.out >>"$GITHUB_OUTPUT"

- uses: actions/upload-artifact@v4
- uses: actions/upload-artifact@v7
with:
name: build-amd64-musl
path: lidm-amd64-musl
Expand Down
Loading