Skip to content
Merged
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/Release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@ jobs:
args: --release --out dist
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheels-macos-universal2
path: dist
- name: Upload binary artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: apple-darwin-bin
path: target/release/cargo-xwin
Expand Down Expand Up @@ -77,12 +77,12 @@ jobs:
args: --release --out dist
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.platform.arch }}
path: dist
- name: Upload binary artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: windows-${{ matrix.platform.arch }}-bin
path: target/${{ matrix.platform.target }}/release/cargo-xwin.exe
Expand Down Expand Up @@ -141,12 +141,12 @@ jobs:
args: --release -o dist
sccache: "true"
- name: Upload wheels
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: wheels-${{ matrix.platform.target }}
path: dist
- name: Upload binary artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
name: ${{ matrix.platform.target }}-bin
path: target/${{ matrix.platform.target }}/release/cargo-xwin
Expand Down
Loading