Skip to content

Commit

Permalink
preparing nuget release
Browse files Browse the repository at this point in the history
  • Loading branch information
lamg committed Jun 22, 2024
1 parent 93233e5 commit 33e9654
Show file tree
Hide file tree
Showing 6 changed files with 51 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: Publish NuGet Package
on:
push:
tags:
- "*"

jobs:
build:
runs-on: ubuntu-latest
container:
image: mcr.microsoft.com/dotnet/sdk:8.0

steps:
- uses: actions/checkout@v4

- name: publish LamgEnv
run: |
dotnet restore
dotnet publish -c Release
dotnet pack
dotnet nuget push nupkg/*.nupkg -k $NUGET_API_KEY -s https://api.nuget.org/v3/index.json
working-directory: ./Lib
env:
NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }}
16 changes: 16 additions & 0 deletions Main/Main.fsproj
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@
<ToolCommandName>r0b0t</ToolCommandName>
<PackageOutputPath>./nupkg</PackageOutputPath>
<GenerateDocumentationFile>true</GenerateDocumentationFile>

<Version>0.0.0</Version>
<Authors>Luis Ángel Méndez Gort</Authors>
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
<AssemblyName>r0b0t</AssemblyName>
<RootNamespace>r0b0t</RootNamespace>
<Title>Chat with LLMs</Title>
<PackageReadmeFile>README.md</PackageReadmeFile>
<Description>GTK application to interact with Large Language Models</Description>
<PackageProjectUrl>https://github.com/lamg/r0b0t</PackageProjectUrl>
<RepositoryUrl>https://github.com/lamg/r0b0t</RepositoryUrl>
<PackageIcon>logo.png</PackageIcon>
</PropertyGroup>

<ItemGroup>
Expand All @@ -18,4 +30,8 @@
<ProjectReference Include="..\Lib\Lib.fsproj" />
</ItemGroup>

<ItemGroup>
<None Include="..\README.md" Pack="true" PackagePath="\"/>
<None Include="..\docs\logo.png" Pack="true" PackagePath="\"/>
</ItemGroup>
</Project>
Binary file added docs/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/logo.xcf
Binary file not shown.
Binary file added docs/original.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 11 additions & 0 deletions docs/prompt.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
prompt:

```
logo for program for chatting with large language models, based on a friendly robot face
```

revised prompt:

```
Design a logo representing a program used for engaging in conversations with large language models. The logo should visually convey interaction and comprehension. Center the design around an amicable robot face, highlighting the traits of approachability and intelligence. The robot should have a friendly smile and its eyes should imply an understanding. Use a blend of modern and futuristic aesthetics, with simplicity and clean lines. Keep the color palette cool and understate, preferably with shades of blue and grey, to bring out the technology and digital theme.
```

0 comments on commit 33e9654

Please sign in to comment.