Skip to content
Closed
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
4 changes: 2 additions & 2 deletions .github/workflows/build-linux-binaries.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
RELEASE: "jammy"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: amd64
path: ${{ github.workspace }}/luxd-pkg/node-linux-amd64-${{ env.TAG }}.tar.gz
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
RELEASE: "jammy"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: arm64
path: ${{ github.workspace }}/luxd-pkg/node-linux-arm64-${{ env.TAG }}.tar.gz
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-macos-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
TAG: ${{ env.TAG }}

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: build
path: node-macos-${{ env.TAG }}.zip
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ubuntu-amd64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
RELEASE: "jammy"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: jammy-amd64
path: /tmp/luxd/luxd-${{ env.TAG }}-amd64.deb
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
RELEASE: "focal"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: focal-amd64
path: /tmp/luxd/luxd-${{ env.TAG }}-amd64.deb
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-ubuntu-arm64-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
RELEASE: "jammy"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: jammy-arm64
path: /tmp/luxd/luxd-${{ env.TAG }}-arm64.deb
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
RELEASE: "focal"

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: focal-arm64
path: /tmp/luxd/luxd-${{ env.TAG }}-arm64.deb
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-win-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
Compress-Archive -Path .\build\luxd.exe -DestinationPath .\build\node-win-${{ env.TAG }}-experimental.zip

- name: Save as Github artifact
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: windows
path: .\build\node-win-${{ env.TAG }}-experimental.zip
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ jobs:
output-file: sbom.spdx.json

- name: Upload SBOM
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: sbom
path: sbom.spdx.json
Loading