Skip to content
Open
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/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
cargo build --release -p facelock-cli --features tpm

- name: Upload release binaries
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-binaries
path: |
Expand Down Expand Up @@ -113,7 +113,7 @@ jobs:
- uses: actions/checkout@v4

- name: Download release binaries
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: release-binaries
path: target/release
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
cd release && sha256sum * > SHA256SUMS

- name: Upload binary artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-binaries
path: release/
Expand Down Expand Up @@ -81,7 +81,7 @@ jobs:
echo "Bundled ORT size: $(du -h onnxruntime/lib/libonnxruntime.so | cut -f1)"

- name: Upload ORT artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: onnxruntime-bundle
path: onnxruntime/
Expand All @@ -106,7 +106,7 @@ jobs:
run: cargo build --release --workspace

- name: Download ORT bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: onnxruntime-bundle
path: onnxruntime
Expand All @@ -125,7 +125,7 @@ jobs:
run: .github/workflows/scripts/validate-deb.sh facelock_*.deb

- name: Upload .deb artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-deb-legacy
path: facelock_*.deb
Expand Down Expand Up @@ -184,7 +184,7 @@ jobs:
cargo build --release --workspace --features tpm

- name: Download ORT bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: onnxruntime-bundle
path: onnxruntime
Expand All @@ -205,7 +205,7 @@ jobs:
run: .github/workflows/scripts/validate-deb.sh facelock_*.deb

- name: Upload .deb artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: release-deb-tpm
path: facelock_*.deb
Expand Down Expand Up @@ -235,7 +235,7 @@ jobs:
tpm2-tss-devel

- name: Download ORT bundle
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: onnxruntime-bundle
path: onnxruntime
Expand Down Expand Up @@ -321,13 +321,13 @@ jobs:
run: sudo apt-get update && sudo apt-get install -y reprepro gnupg

- name: Download TPM .deb artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: release-deb-tpm
path: debs/tpm

- name: Download legacy .deb artifact
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
name: release-deb-legacy
path: debs/legacy
Expand Down
Loading