Skip to content

Commit c0e9903

Browse files
Merge pull request #9 from wisedev-code/feat/docs-with-cleanup-and-improvements
Feat/docs with cleanup and improvements
2 parents 4eba4a3 + 9404de3 commit c0e9903

99 files changed

Lines changed: 941 additions & 415 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/publish.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,14 @@ jobs:
4242
env:
4343
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4444
run: |
45+
# Create a tag using today's date
4546
TAG_NAME="v$(date +'%Y.%m.%d')"
46-
gh release create "$TAG_NAME" ./artifacts/*.nupkg --title "Release $TAG_NAME" --notes "Automated release of NuGet package."
47+
# Get the NuGet package file name from the artifacts folder and remove its extension for the release title
48+
NUPKG_FILE=$(basename $(ls ./artifacts/*.nupkg))
49+
RELEASE_NAME="${NUPKG_FILE%.*}"
50+
# Get the newest markdown file from the Releases folder and read its content as release notes
51+
NEWEST_NOTES=$(ls -t Releases/*.md | head -n1)
52+
RELEASE_NOTES=$(cat "$NEWEST_NOTES")
53+
# Create the GitHub release using the tag, NuGet package and release notes
54+
gh release create "$TAG_NAME" ./artifacts/*.nupkg --title "$RELEASE_NAME" --notes "$RELEASE_NOTES"
4755
shell: bash

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ mono_crash.*
2020
[Dd]ebug/
2121
[Dd]ebugPublic/
2222
[Rr]elease/
23-
[Rr]eleases/
2423
x64/
2524
x86/
2625
[Ww][Ii][Nn]32/
@@ -373,6 +372,8 @@ MigrationBackup/
373372
# Ionide (cross platform F# VS Code tools) working folder
374373
.ionide/
375374

375+
.idea/
376+
376377
# Fody - auto-generated XML schema
377378
FodyWeavers.xsd
378379

.idea/.idea.MaIN/.idea/.gitignore

Lines changed: 0 additions & 13 deletions
This file was deleted.

.idea/.idea.MaIN/.idea/.name

Lines changed: 0 additions & 1 deletion
This file was deleted.

.idea/.idea.MaIN/.idea/indexLayout.xml

Lines changed: 0 additions & 8 deletions
This file was deleted.

.idea/.idea.MaIN/.idea/inspectionProfiles/Project_Default.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

.idea/.idea.MaIN/.idea/vcs.xml

Lines changed: 0 additions & 6 deletions
This file was deleted.

Docs/Images/RAG.drawio.png

-60 KB
Binary file not shown.

Docs/Images/temp/example.json

Lines changed: 0 additions & 59 deletions
This file was deleted.

Docs/Images/temp/response.json

Lines changed: 0 additions & 13 deletions
This file was deleted.

0 commit comments

Comments
 (0)