mirror of
https://github.com/redstrate/Kawari.git
synced 2025-04-21 15:07:45 +00:00
Upload artifacts from CI
This commit is contained in:
parent
c88e3ca6d7
commit
ae40e4c066
1 changed files with 14 additions and 1 deletions
15
.github/workflows/main.yml
vendored
15
.github/workflows/main.yml
vendored
|
@ -31,8 +31,21 @@ jobs:
|
||||||
target/
|
target/
|
||||||
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose --no-default-features
|
run: cargo build --release --verbose --no-default-features
|
||||||
- name: Run clippy
|
- name: Run clippy
|
||||||
run: cargo clippy --no-default-features
|
run: cargo clippy --no-default-features
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose --no-default-features
|
run: cargo test --verbose --no-default-features
|
||||||
|
- name: Archive artifacts
|
||||||
|
uses: actions/upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: ${{ runner.os }}-package
|
||||||
|
path: |
|
||||||
|
target/release/kawari-admin*
|
||||||
|
target/release/kawari-frontier*
|
||||||
|
target/release/kawari-lobby*
|
||||||
|
target/release/kawari-login*
|
||||||
|
target/release/kawari-patch*
|
||||||
|
target/release/kawari-web*
|
||||||
|
!target/release/*.d
|
||||||
|
if-no-files-found: error
|
||||||
|
|
Loading…
Add table
Reference in a new issue