commit caf90fe300b3b79f8d40449588f2a84d8186e3a4 parent a17406fa249d47cc9ffe729c81aa9028ad14042f Author: Yersa Nordman <yersa@finwo.nl> Date: Sun, 8 Oct 2023 19:43:15 +0200 Split install of dep between native and alpine Diffstat:
| M | .github/workflows/tag-assets.yml | | | 14 | +++++++++++++- |
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/.github/workflows/tag-assets.yml b/.github/workflows/tag-assets.yml @@ -25,8 +25,8 @@ jobs: mode: alpine steps: - uses: actions/checkout@v3 - - uses: finwo/dep@edge - uses: jirutka/setup-alpine@v1 + if: ${{ matrix.mode == 'alpine' }} with: branch: v3.18 arch: ${{ matrix.arch }} @@ -44,6 +44,18 @@ jobs: run: | ./.github/install-pkg.sh pandoc ./.github/install-pkg.sh build-base + ./.github/install-pkg.sh wget + + - uses: finwo/dep@edge + name: Install dep (native) + if: ${{ matrix.mode == 'native' }} + + - if: ${{ matrix.mode == 'alpine' }} + name: Install dep (alpine) + shell: alpine.sh --root {0} + run: | + wget https://raw.githubusercontent.com/finwo/dep/edge/dist/dep -O /usr/bin/dep + chmod +x /usr/bin/dep - if: ${{ matrix.mode == 'native' }} name: Build generic package (native)