Skip to content

Commit

Permalink
chore: use GHCR for install.sh (#11)
Browse files Browse the repository at this point in the history
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 <[email protected]>
  • Loading branch information
xynydev and gmpinder authored Jan 24, 2024
1 parent 00b81a2 commit 42d879a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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"
Expand Down
8 changes: 4 additions & 4 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@ function cleanup() {
echo "Cleaning up image"
podman stop -i -t 0 blue-build-installer
sleep 2
podman image rm registry.gitlab.com/wunker-bunker/blue-build:latest-installer
podman image rm ghcr.io/blue-build/cli:latest-installer
}

podman pull registry.gitlab.com/wunker-bunker/blue-build:latest-installer
podman pull ghcr.io/blue-build/cli:latest-installer

podman run -d --rm --name blue-build-installer registry.gitlab.com/wunker-bunker/blue-build:latest-installer tail -f /dev/null
podman run -d --rm --name blue-build-installer ghcr.io/blue-build/cli:latest-installer tail -f /dev/null

set +e
podman cp blue-build-installer:/out/bb /usr/local/bin/bb
Expand All @@ -22,7 +22,7 @@ set -e
if [ -n $RETVAL ]; then
cleanup
echo "Failed to copy file, try:"
printf "\tpodman run --rm registry.gitlab.com/wunker-bunker/blue-build:latest-installer | sudo bash\n"
printf "\tpodman run --rm ghcr.io/blue-build/cli:latest-installer | sudo bash\n"
exit 1
else
cleanup
Expand Down
2 changes: 1 addition & 1 deletion templates/Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ COPY --from=docker.io/mikefarah/yq /usr/bin/yq /usr/bin/yq

COPY --from=gcr.io/projectsigstore/cosign /ko-app/cosign /usr/bin/cosign

COPY --from=registry.gitlab.com/wunker-bunker/blue-build:
COPY --from=ghcr.io/blue-build/cli:
{%- if let Some(tag) = recipe.blue_build_tag -%}
{{ tag }}
{%- else -%}
Expand Down

0 comments on commit 42d879a

Please sign in to comment.