Skip to content

Commit

Permalink
workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
zephyrchien committed Feb 20, 2024
1 parent dd96074 commit 999a61d
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/cross_compile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,13 +44,13 @@ jobs:
run: cross build --release --target=${{ matrix.target }}
- name: upload unix binary
if: "!contains(matrix.target, 'windows')"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm
- name: upload windows binary
if: "contains(matrix.target, 'windows')"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm.exe
Expand All @@ -70,7 +70,7 @@ jobs:
- name: compile
run: cargo build --release --target=${{ matrix.target }}
- name: upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm.exe
Expand All @@ -92,7 +92,7 @@ jobs:
- name: compile
run: cargo build --release --target=${{ matrix.target }}
- name: upload
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: realm-${{ matrix.target }}
path: target/${{ matrix.target }}/release/realm

0 comments on commit 999a61d

Please sign in to comment.