Skip to content

Commit

Permalink
🚸 add comamand desciptions
Browse files Browse the repository at this point in the history
  • Loading branch information
csc530 committed Jun 10, 2024
1 parent c0f995a commit 87ca89d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
path: ./publish/

- name: Zip Files
run: 7z a ./${{ matrix.os }}_resumer_${{ github.ref_name }}.zip ./publish
run: 7z a ./${{ matrix.os }}_resumer_${{ github.ref_name }}.zip .\publish\*

- name: Upload Release Asset
run: gh release upload ${{ github.ref_name }} ${{ matrix.os }}_resumer_${{ github.ref_name }}.zip
3 changes: 3 additions & 0 deletions .idea/.idea.resumer/.idea/jsonSchemas.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions Resumer/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -131,21 +131,26 @@ public static void AppConfiguration(IConfigurator config)
.WithAlias("configuration")
.WithAlias("conf")
.WithAlias("setting")
.WithDescription("get app's current configuration settings")
.WithAlias("settings");
get.AddCommand<GetSkillCommand>("skill")
.WithAlias("s")
.WithDescription("list skills")
.WithAlias("skills");
get.AddCommand<GetCompanyCommand>("company")
.WithAlias("c")
.WithDescription("list companies")
.WithAlias("companies")
.WithDescription("list companies you've worked for");
get.AddCommand<GetJobCommand>("job")
.WithAlias("jobs")
.WithDescription("list jobs")
.WithAlias("j");
get.AddCommand<GetProfileCommand>("profile")
.WithAlias("user")
.WithAlias("u")
.WithAlias("users")
.WithDescription("list user profiles")
.WithAlias("profiles");
get.AddCommand<GetProjectCommand>("project")
.WithDescription("list projects")
Expand Down

0 comments on commit 87ca89d

Please sign in to comment.