Skip to content
This repository was archived by the owner on Sep 1, 2023. It is now read-only.

Commit 5ec1679

Browse files
Release version 0.4.1-alpha (#82)
- feat(mods): add `mods add <id>` command - fix(mod-struct): rename `user_id` to `modID` (#42) - feat: add mods remove command - fix: a lot of stuff - chore: change sentry configs to production - feat: add `mods allow` command - feat: add `mods deny <id> <...perm>` command - style: improve argument parsing - feat: add teams apps command - fix: rename use to uses in workflow - fix: add runs-on key to gh workflow - fix: consider clippy warnings as errors - chore: fix clippy warnings - fix mods and teams commands - fix: make plan related properties option on user struct - feat: add all teams commands - feat: add status command - fix: remove token.clone() - feat: bump cli version
2 parents 5860a01 + 44c8d7e commit 5ec1679

31 files changed

+1448
-349
lines changed

.github/workflows/check.yml

+33
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Build and Check (w/ Clippy)
2+
on:
3+
- push
4+
jobs:
5+
clippy:
6+
name: Run clippy
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@master
10+
- name: Setup Rust
11+
uses: actions-rust-lang/[email protected]
12+
with:
13+
toolchain: stable
14+
- name: Run clippy
15+
run: cargo clippy -- -D warnings
16+
build:
17+
name: Build on ${{ matrix.target }}
18+
runs-on: ${{ matrix.target }}
19+
strategy:
20+
matrix:
21+
target: [windows-latest, macos-latest, ubuntu-latest]
22+
steps:
23+
- uses: actions/checkout@master
24+
- name: Setup Rust
25+
uses: actions-rust-lang/[email protected]
26+
with:
27+
toolchain: stable
28+
- name: Compile
29+
run: cargo build -r
30+
- uses: actions/upload-artifact@v3
31+
with:
32+
name: discloud-cli-${{ matrix.target }}
33+
path: target

.gitpod.yml

-4
This file was deleted.

0 commit comments

Comments
 (0)