Skip to content
This repository was archived by the owner on Mar 7, 2026. It is now read-only.

Commit dbba18e

Browse files
authored
v0.7.1: chore: Update CI workflows, submodules, and IDE configurations (#24)
* chore(IDE): update VCS mappings and workspace configuration Updated VCS mappings to include MooaLewaUI directory and Lunar.Core.Base. Cleaned up workspace.xml by removing stale change list entries and updating recent Git root path. * chore: update VCS mappings for MooaLewaUI module * chore(doc): remove manifest.json and update base checksum * chore(ci): add submodule initialization to docs workflow Add git submodule update step to GitHub Pages workflow to ensure submodules are initialized before building documentation. Also includes new solution settings file and project file changes. * chore(ci): add SSH setup step to GitHub Pages workflow * chore(ci): update GitHub Pages workflow dependencies Update actions/checkout to v4 and simplify SSH setup by using token-based authentication. Remove manual submodule update step as it's now handled by checkout action. * chore(ci): update GitHub Pages workflow steps Simplify checkout step and separate submodule update. Use explicit GITHUB_TOKEN for submodule initialization. * fix(.gitmodules): change submodule URL from SSH to HTTPS Update the URL for the 'src/Lunar.Core.Base' submodule to use HTTPS protocol instead of SSH for better compatibility.
1 parent e435a3f commit dbba18e

6 files changed

Lines changed: 14 additions & 458 deletions

File tree

.github/workflows/github-pages.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,17 @@ jobs:
2626
steps:
2727
- name: Checkout
2828
uses: actions/checkout@v3
29+
2930
- name: Dotnet Setup
3031
uses: actions/setup-dotnet@v3
3132
with:
3233
dotnet-version: 8.x
3334

35+
- name: Update submodules
36+
env:
37+
GITHUB_TOKEN: ${{ secrets.MY_PAT }}
38+
run: git submodule update --init --recursive
39+
3440
- run: dotnet tool update -g docfx
3541
- run: docfx doc/docfx.json
3642

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "src/Lunar.Core.Base"]
22
path = src/Lunar.Core.Base
3-
url = git@github.com:Bli-AIk/Lunar.Core.Base.git
3+
url = https://github.com/Bli-AIk/Lunar.Core.Base.git

.idea/.idea.Lunar/.idea/vcs.xml

Lines changed: 3 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Lunar.sln.DotSettings

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
<wpf:ResourceDictionary xml:space="preserve" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:s="clr-namespace:System;assembly=mscorlib" xmlns:ss="urn:shemas-jetbrains-com:settings-storage-xaml" xmlns:wpf="http://schemas.microsoft.com/winfx/2006/xaml/presentation">
2+
<s:Boolean x:Key="/Default/UserDictionary/Words/=lewa/@EntryIndexedValue">True</s:Boolean>
3+
<s:Boolean x:Key="/Default/UserDictionary/Words/=mooa/@EntryIndexedValue">True</s:Boolean></wpf:ResourceDictionary>

0 commit comments

Comments
 (0)