Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update artifact actions to v4 #146

Closed
wants to merge 2 commits into from
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
6 changes: 3 additions & 3 deletions .github/workflows/build-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ jobs:
run: make build-packages-cpp-standalone TARGETPLATFORM=${{ matrix.architecture }}
- name: Upload C++ Package
if: matrix.architecture != 'linux/arm64' || github.ref == 'refs/heads/main' || (github.event_name == 'release' && github.event.action == 'published')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: cpp-package
path: packages/cpp/
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
run: make build-packages-python-standalone TARGETPLATFORM=${{ matrix.architecture }}
- name: Upload Python Package
if: matrix.architecture != 'linux/arm64' || github.ref == 'refs/heads/main' || (github.event_name == 'release' && github.event.action == 'published')
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: python-package
path: packages/python/
Expand All @@ -121,7 +121,7 @@ jobs:
- name: Tar files
run: tar -cvf docs.tar.gz docs/
- name: Upload Documentation
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: docs
path: docs.tar.gz
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Download C++ Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: cpp-package
path: packages/cpp/
Expand All @@ -61,7 +61,7 @@ jobs:
fetch-depth: 0
lfs: true
- name: Download Python Package
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: python-package
path: packages/python/
Expand All @@ -84,7 +84,7 @@ jobs:
fetch-depth: 0
lfs: true
- name: Download Documentation
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: docs
- name: Untar Files
Expand Down
Loading