fix: use lowercase names for builtin external extensions (#1756)
This commit is contained in:
+22
-22
@@ -33,6 +33,28 @@ jobs:
|
|||||||
name: Build and Test Rust Project
|
name: Build and Test Rust Project
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
steps:
|
steps:
|
||||||
|
# Add disk space cleanup before linting
|
||||||
|
- name: Check disk space before build
|
||||||
|
run: df -h
|
||||||
|
|
||||||
|
#https://github.com/actions/runner-images/issues/2840
|
||||||
|
- name: Clean up disk space
|
||||||
|
run: |
|
||||||
|
echo "Cleaning up disk space..."
|
||||||
|
sudo rm -rf \
|
||||||
|
/opt/google/chrome \
|
||||||
|
/opt/microsoft/msedge \
|
||||||
|
/opt/microsoft/powershell \
|
||||||
|
/usr/lib/mono \
|
||||||
|
/usr/local/lib/android \
|
||||||
|
/usr/local/lib/node_modules \
|
||||||
|
/usr/local/share/chromium \
|
||||||
|
/usr/local/share/powershell \
|
||||||
|
/usr/share/dotnet \
|
||||||
|
/usr/share/swift
|
||||||
|
|
||||||
|
df -h
|
||||||
|
|
||||||
- name: Checkout Code
|
- name: Checkout Code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
@@ -70,28 +92,6 @@ jobs:
|
|||||||
restore-keys: |
|
restore-keys: |
|
||||||
${{ runner.os }}-cargo-build-
|
${{ runner.os }}-cargo-build-
|
||||||
|
|
||||||
# Add disk space cleanup before linting
|
|
||||||
- name: Check disk space before build
|
|
||||||
run: df -h
|
|
||||||
|
|
||||||
#https://github.com/actions/runner-images/issues/2840
|
|
||||||
- name: Clean up disk space
|
|
||||||
run: |
|
|
||||||
echo "Cleaning up disk space..."
|
|
||||||
sudo rm -rf \
|
|
||||||
/opt/google/chrome \
|
|
||||||
/opt/microsoft/msedge \
|
|
||||||
/opt/microsoft/powershell \
|
|
||||||
/usr/lib/mono \
|
|
||||||
/usr/local/lib/android \
|
|
||||||
/usr/local/lib/node_modules \
|
|
||||||
/usr/local/share/chromium \
|
|
||||||
/usr/local/share/powershell \
|
|
||||||
/usr/share/dotnet \
|
|
||||||
/usr/share/swift
|
|
||||||
|
|
||||||
df -h
|
|
||||||
|
|
||||||
- name: Build and Test
|
- name: Build and Test
|
||||||
run: |
|
run: |
|
||||||
gnome-keyring-daemon --components=secrets --daemonize --unlock <<< 'foobar'
|
gnome-keyring-daemon --components=secrets --daemonize --unlock <<< 'foobar'
|
||||||
|
|||||||
@@ -433,22 +433,22 @@ pub fn configure_extensions_dialog() -> Result<(), Box<dyn Error>> {
|
|||||||
"Code editing and shell access",
|
"Code editing and shell access",
|
||||||
)
|
)
|
||||||
.item(
|
.item(
|
||||||
"Computer Controller",
|
"computercontroller",
|
||||||
"Computer Controller",
|
"Computer Controller",
|
||||||
"controls for webscraping, file caching, and automations",
|
"controls for webscraping, file caching, and automations",
|
||||||
)
|
)
|
||||||
.item(
|
.item(
|
||||||
"Google Drive",
|
"googledrive",
|
||||||
"Google Drive",
|
"Google Drive",
|
||||||
"Search and read content from google drive - additional config required",
|
"Search and read content from google drive - additional config required",
|
||||||
)
|
)
|
||||||
.item(
|
.item(
|
||||||
"Memory",
|
"memory",
|
||||||
"Memory",
|
"Memory",
|
||||||
"Tools to save and retrieve durable memories",
|
"Tools to save and retrieve durable memories",
|
||||||
)
|
)
|
||||||
.item(
|
.item(
|
||||||
"Tutorial",
|
"tutorial",
|
||||||
"Tutorial",
|
"Tutorial",
|
||||||
"Access interactive tutorials and guides",
|
"Access interactive tutorials and guides",
|
||||||
)
|
)
|
||||||
|
|||||||
Reference in New Issue
Block a user