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/publish-linux-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
rm -rf target/debian/
cargo deb
- name: Upload deb artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: deb-package
path: target/debian/*.deb
Expand All @@ -58,7 +58,7 @@ jobs:
rm -rf target/generate-rpm/
cargo generate-rpm
- name: Upload rpm artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: rpm-package
path: target/generate-rpm/*.rpm
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
echo "manifest=$(cat plan.json)" >> "$GITHUB_OUTPUT"
cat plan.json
- name: Upload dist-manifest.json
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: artifacts-plan-dist-manifest
path: dist-manifest.json
Expand Down Expand Up @@ -74,7 +74,7 @@ jobs:
shell: bash
run: cargo dist build --print=linkage --output-format=json --target=${{ matrix.target }} > build-dist-${{ matrix.target }}.json
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: artifacts-${{ matrix.target }}
path: dist/
Expand All @@ -93,7 +93,7 @@ jobs:
- name: Build global artifacts (shell/powershell installer scripts, homebrew formula)
run: cargo dist build --output-format=json --global-artifacts > build-global.json
- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: artifacts-global
path: dist/
Expand Down