commit 03d7217d66ed461a6444a1e3211365f3a5c2d22b
parent f468aad76eef436a1bd784bb5a966306fce49dc3
Author: minerva-jupiter <ryouturn@gmail.com>
Date: Tue, 4 Aug 2026 11:04:42 +0900
ci(workflow): temporarily disable external packages in build matrix and docs
Diffstat:
2 files changed, 25 insertions(+), 25 deletions(-)
diff --git a/.github/workflows/cargo-deb.yaml b/.github/workflows/cargo-deb.yaml
@@ -21,21 +21,21 @@ jobs:
fail-fast: false
matrix:
include:
- - name: nushell
- type: github-release
- repo: nushell/nushell
- bin: nu
- prebuild_assets: false
- - name: starship
- type: github-release
- repo: starship/starship
- bin: starship
- prebuild_assets: false
- - name: zellij
- type: github-release
- repo: zellij-org/zellij
- bin: zellij
- prebuild_assets: true
+ # - name: nushell
+ # type: github-release
+ # repo: nushell/nushell
+ # bin: nu
+ # prebuild_assets: false
+ # - name: starship
+ # type: github-release
+ # repo: starship/starship
+ # bin: starship
+ # prebuild_assets: false
+ # - name: zellij
+ # type: github-release
+ # repo: zellij-org/zellij
+ # bin: zellij
+ # prebuild_assets: true
- name: gemini-commit-message
type: git-head
repo: minerva-jupiter/gemini-commit-message
@@ -63,21 +63,21 @@ jobs:
run: |
mkdir -p build_work
cd build_work
-
+
if [ "${{ matrix.type }}" = "github-release" ]; then
LATEST_TAG=$(curl -s "https://api.github.com/repos/${{ matrix.repo }}/releases/latest" | jq -r .tag_name)
git clone --depth 1 --branch "$LATEST_TAG" "https://github.com/${{ matrix.repo }}.git" source
else
git clone --depth 1 "https://github.com/${{ matrix.repo }}.git" source
fi
-
+
cd source
if [ "${{ matrix.prebuild_assets }}" = "true" ]; then
cargo install ${{ matrix.name }} --locked
mkdir -p assets/completions assets/layouts assets/plugins assets/man
${{ matrix.bin }} setup --generate-completion bash > assets/completions/${{ matrix.bin }}.bash
-
+
# zsh の補完ファイル名規約に合わせる処理
# mv assets/completions/${{ matrix.bin }}.zsh assets/completions/_${{ matrix.bin }}
@@ -85,7 +85,7 @@ jobs:
fi
cargo deb
-
+
mkdir -p ../../debs
cp target/debian/*.deb ../../debs/
@@ -129,7 +129,7 @@ jobs:
cd public
dpkg-scanpackages . /dev/null > Packages
gzip -9c Packages > Packages.gz
-
+
DATE=$(date -u -R)
MD5=$(md5sum Packages | awk '{print $1}')
SHA256=$(sha256sum Packages | awk '{print $1}')
diff --git a/README.md b/README.md
@@ -6,9 +6,9 @@ GitHub Actions 上でソースコードから `.deb` パッケージを自動ビ
## 収録パッケージ
-* **[nushell](https://github.com/nushell/nushell)** - A new type of shell
+<!--* **[nushell](https://github.com/nushell/nushell)** - A new type of shell
* **[starship](https://github.com/starship/starship)** - The minimal, blazing-fast, and infinitely customizable prompt for any shell
-* **[zellij](https://github.com/zellij-org/zellij)** - A terminal workspace with batteries included
+* **[zellij](https://github.com/zellij-org/zellij)** - A terminal workspace with batteries included-->
* **gemini-commit-message** - Custom CLI tool for AI-generated commit messages
---
@@ -27,16 +27,16 @@ echo "deb [trusted=yes] https://minerva-jupiter.github.io/deb-collections ./" |
sudo apt update
```
### 3. パッケージのインストール
-#### 個別にインストールする場合
+<!--#### 個別にインストールする場合
```bash
sudo apt install nushell
sudo apt install starship
sudo apt install zellij
sudo apt install gemini-commit-message
-```
+```-->
#### 一括でインストールする場合
```bash
-sudo apt install nushell starship zellij gemini-commit-message
+sudo apt install gemini-commit-message
```
## 補足事項