Skip to content

Commit

Permalink
👷 add release github action
Browse files Browse the repository at this point in the history
  • Loading branch information
csc530 committed May 14, 2024
1 parent 9b16b23 commit 5741b22
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 8 deletions.
25 changes: 19 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
# resumer

save your job details and easily build a résumé from them

## why?
Expand All @@ -7,16 +8,28 @@ well, you know, formatting in Word is just eeghh😵‍💫😵‍💫🥴, ya
and I hate the copy-paste from my *plain* docx resume to online formatters, just to get paywalled😑,
so I made this and hopefully i don't quit, and it turns into something nice :)

## installation

*requires existing dotnet runtime on system*

### from source

```bash
git clone https://github.com/csc530/resumer.git
cd resumer
dotnet publish -c Release -o ./path/to/publish
```

## todo ✅

- [ ] add corruption handler and detector for db
- [ ] if it exists but isn't populated
- [ ] missing or mal formatted tables
- [ ] managed personal job details
- [ ] projects
- [ ] jobs
- [ ] volunteering
- [ ] skills
- [ ] references
- [ ] projects
- [ ] jobs
- [ ] volunteering
- [ ] skills
- [ ] references
- [ ] curate profile per resume
- select skills, jobs, summary
- select skills, jobs, summary
2 changes: 1 addition & 1 deletion Resumer/cli/settings/CLISettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,5 +4,5 @@ namespace Resumer.cli.settings;

public class CliSettings : CommandSettings
{
[CommandOption("-v|--verbose")] public bool Verbose { get; set; }
// [CommandOption("-v|--verbose")] public bool Verbose { get; set; }
}
8 changes: 7 additions & 1 deletion Resumer/resumer.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@
<LangVersion>latestmajor</LangVersion>
<StartupObject>Resumer.Program</StartupObject>
<AssemblyName>Resumer</AssemblyName>

<SuppressTrimAnalysisWarnings>false</SuppressTrimAnalysisWarnings>
<EnableTrimAnalyzer>true</EnableTrimAnalyzer>
</PropertyGroup>

<PropertyGroup Condition=" '$(Configuration)' == 'Debug' ">
Expand All @@ -19,8 +22,11 @@
<CheckForOverflowUnderflow>true</CheckForOverflowUnderflow>
<PublishSingleFile>true</PublishSingleFile>
<PublishTrimmed>true</PublishTrimmed>
<TrimMode>partial</TrimMode>
<SelfContained>true</SelfContained>
<PublishReadyToRun>true</PublishReadyToRun>
<DebugType>None</DebugType>
<DebugSymbols>False</DebugSymbols>
</PropertyGroup>

<ItemGroup>
Expand All @@ -30,7 +36,7 @@
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="Microsoft.EntityFrameworkCore.Sqlite" Version="8.0.0"/>
<PackageReference Include="Spectre.Console" Version="0.48.0" />
<PackageReference Include="Spectre.Console" Version="0.49.1" />
<PackageReference Include="Spectre.Console.Analyzer" Version="0.48.0">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
Expand Down

0 comments on commit 5741b22

Please sign in to comment.