pmlag

Poor man's link aggregation
git clone git://git.finwo.net/app/pmlag
Log | Files | Refs | README | LICENSE

commit 9107334d5b14b5ae3efce857ed7b66b36d7b34e4
parent 0f52154cdaa7e7203cb27ab2385a70ab12b4f01d
Author: Yersa Nordman <yersa@finwo.nl>
Date:   Sun,  8 Oct 2023 19:45:59 +0200

Replace wget by curl in alpine builder

Diffstat:
M.github/workflows/tag-assets.yml | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/tag-assets.yml b/.github/workflows/tag-assets.yml @@ -45,7 +45,7 @@ jobs: ./.github/install-pkg.sh bash ./.github/install-pkg.sh pandoc ./.github/install-pkg.sh build-base - ./.github/install-pkg.sh wget + ./.github/install-pkg.sh curl - uses: finwo/dep@edge name: Install dep (native) @@ -55,7 +55,7 @@ jobs: name: Install dep (alpine) shell: alpine.sh --root {0} run: | - wget https://raw.githubusercontent.com/finwo/dep/edge/dist/dep -O /usr/bin/dep + curl -sSL https://raw.githubusercontent.com/finwo/dep/edge/dist/dep -o /usr/bin/dep chmod +x /usr/bin/dep - if: ${{ matrix.mode == 'native' }}