Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
nbdd0121 committed Mar 30, 2023
1 parent e062614 commit 1ce7240
Showing 1 changed file with 4 additions and 18 deletions.
22 changes: 4 additions & 18 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- uses: actions/checkout@v3

- name: Build
working-directory: client
Expand All @@ -23,7 +16,7 @@ jobs:
- name: Strip Debug Symbols
run: strip target/release/wsld

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: 'wsld'
path: target/release/wsld
Expand All @@ -40,20 +33,13 @@ jobs:
runs-on: windows-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
default: true
override: true
- uses: actions/checkout@v3

- name: Build
working-directory: server
run: cargo build --release

- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: 'wsldhost.exe'
path: target/release/wsldhost.exe
Expand Down

0 comments on commit 1ce7240

Please sign in to comment.