Install zellij
This commit is contained in:
@@ -14,7 +14,8 @@ stages:
|
|||||||
build-image:
|
build-image:
|
||||||
stage: build
|
stage: build
|
||||||
interruptible: true
|
interruptible: true
|
||||||
image: ghcr.io/blue-build/cli:main
|
# image: ghcr.io/blue-build/cli:main
|
||||||
|
image: ghcr.io/blue-build/cli:257-support-versioned-modules
|
||||||
services:
|
services:
|
||||||
- docker:dind
|
- docker:dind
|
||||||
parallel:
|
parallel:
|
||||||
|
|||||||
12
files/scripts/install-zellij.nu
Executable file
12
files/scripts/install-zellij.nu
Executable file
@@ -0,0 +1,12 @@
|
|||||||
|
#!/usr/bin/env nu
|
||||||
|
|
||||||
|
let download_url = (
|
||||||
|
(http get https://api.github.com/repos/zellij-org/zellij/releases | enumerate).0.item.assets
|
||||||
|
| find -c [name] "x86_64-unknown-linux-musl.tar.gz"
|
||||||
|
).browser_download_url.0
|
||||||
|
|
||||||
|
http get -r $download_url | save /tmp/zellij.tar.gz
|
||||||
|
tar -xvf /tmp/zellij.tar.gz
|
||||||
|
mv zellij /usr/bin/
|
||||||
|
rm /tmp/zellij.tar.gz
|
||||||
|
zellij -V
|
||||||
@@ -51,3 +51,4 @@ modules:
|
|||||||
scripts:
|
scripts:
|
||||||
- install-mkcert.sh
|
- install-mkcert.sh
|
||||||
- install-codelldb.sh
|
- install-codelldb.sh
|
||||||
|
- install-zellij.nu
|
||||||
|
|||||||
@@ -36,3 +36,4 @@ modules:
|
|||||||
scripts:
|
scripts:
|
||||||
- install-mkcert.sh
|
- install-mkcert.sh
|
||||||
- install-codelldb.sh
|
- install-codelldb.sh
|
||||||
|
- install-zellij.nu
|
||||||
|
|||||||
Reference in New Issue
Block a user