Skip to content

Commit

Permalink
install from git release
Browse files Browse the repository at this point in the history
  • Loading branch information
m2Giles committed Nov 8, 2024
1 parent d5adf28 commit 2a93f0f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/reusable-build-iso.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,10 +44,11 @@ jobs:
shell: bash
run: |
set -eoux pipefail
JUST_IMAGE=$(sudo podman run --entrypoint /bin/sh -dt alpine:edge)
sudo podman exec "${JUST_IMAGE}" apk add just
sudo podman cp "${JUST_IMAGE}":/usr/bin/just /usr/local/bin/just
sudo podman rm -f "${JUST_IMAGE}"
curl -sSLO \
https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz
tar -zxvf just-1.36.0-x86_64-unknown-linux-musl.tar.gz just
sudo mv just /usr/local/bin/just
rm -f just-1.36.0-x86_64-unknown-linux-musl.tar.gz
- name: Check Just Syntax
shell: bash
Expand Down
9 changes: 5 additions & 4 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,11 @@ jobs:
shell: bash
run: |
set -eoux pipefail
JUST_IMAGE=$(sudo podman run --entrypoint /bin/sh -dt alpine:edge)
sudo podman exec "${JUST_IMAGE}" apk add just
sudo podman cp "${JUST_IMAGE}":/usr/bin/just /usr/local/bin/just
sudo podman rm -f "${JUST_IMAGE}"
curl -sSLO \
https://github.com/casey/just/releases/download/1.36.0/just-1.36.0-x86_64-unknown-linux-musl.tar.gz
tar -zxvf just-1.36.0-x86_64-unknown-linux-musl.tar.gz just
sudo mv just /usr/local/bin/just
rm -f just-1.36.0-x86_64-unknown-linux-musl.tar.gz
- name: Check Just Syntax
shell: bash
Expand Down

0 comments on commit 2a93f0f

Please sign in to comment.