chore: use GHCR for install.sh (#11)
Trying to make the action install the binary from the container on GHCR with `podman run --rm ghcr.io/blue-build/cli:main-installer | sudo bash` (like in the README). Getting some error and this _might_ be related and might not, but shouldn't hurt to merge either, since I just made the `cli` package public. --------- Co-authored-by: Gerald Pinder <gmpinder@gmail.com>
This commit is contained in:
parent
00b81a25bc
commit
42d879a6e5
3 changed files with 7 additions and 7 deletions
|
|
@ -26,7 +26,7 @@ cargo install --locked blue-build
|
|||
This will install the binary on your system in `/usr/local/bin`. This is only a `linux-gnu` version.
|
||||
|
||||
```bash
|
||||
podman run --rm registry.gitlab.com/wunker-bunker/blue-build:latest-installer | sudo bash
|
||||
podman run --rm ghcr.io/blue-build/cli:latest-installer | sudo bash
|
||||
```
|
||||
|
||||
## How to use
|
||||
|
|
@ -97,7 +97,7 @@ variables:
|
|||
- "build-image"
|
||||
build-image:
|
||||
stage: build
|
||||
image: registry.gitlab.com/wunker-bunker/blue-build:alpine
|
||||
image: ghcr.io/blue-build/cli:alpine
|
||||
retry: 2
|
||||
rules:
|
||||
- if: $ACTION == "build-image"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue