Skip to content

Commit

Permalink
fix(gha/vyos-build): left env var name blank
Browse files Browse the repository at this point in the history
  • Loading branch information
JJGadgets committed Feb 29, 2024
1 parent dbf7eaf commit f745c6e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/vyos-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:

- name: Configure
shell: bash
run: "sudo ./vyos/build.sh"
run: "sudo env bash ./vyos/build.sh"

- name: Create release with artifact
uses: ncipollo/release-action@v1
Expand Down
4 changes: 4 additions & 0 deletions vyos/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,12 @@ ATUIN_VERSION="${ATUIN_VERSION#*v}"
TASK_VERSION="v3.35.0"
TASK_VERSION="${TASK_VERSION#*v}"

pwd
git clone --depth=1 --branch "${VYOS_VERSION}" --single-branch "${VYOS_URL}" ./vyos-build
cd ./vyos-build
mkdir -p ./build ./packages
pwd
ls -AlhR . # debug

curl -vL -o ./packages/sops.deb "https://github.com/getsops/sops/releases/download/v${SOPS_VERSION}/sops_${SOPS_VERSION}_${VYOS_ARCH}.deb"
curl -vL -o ./packages/atuin.deb "https://github.com/atuinsh/atuin/releases/download/v${ATUIN_VERSION}/atuin_${ATUIN_VERSION}_${VYOS_ARCH}.deb"
Expand Down

0 comments on commit f745c6e

Please sign in to comment.