actions
actions copied to clipboard
[asdf-vm/actions/[email protected]]: `FAILED: missing callback download` during `plugin test`
Downgrading to asdf-vm/actions/[email protected] fixes the issue.
jobs:
install:
name: Test install latest
strategy:
fail-fast: false
matrix:
include:
- os: ubuntu-latest
- os: ubuntu-latest
container: alpine:latest
- os: macos-latest
runs-on: ${{ matrix.os }}
container: ${{ matrix.container }}
steps:
- uses: actions/[email protected]
- if: ${{ matrix.container == 'alpine:latest' }}
run: apk add --no-cache bash
- if: ${{ matrix.os == 'ubuntu-latest' && !matrix.container }}
run: sudo apt install --update -y git curl
- name: extract tool-name
id: tool-name
run: |
source lib/utils
echo "tool_name=$TOOL_NAME" >> $GITHUB_OUTPUT
- name: Test install
uses: asdf-vm/actions/[email protected]
with:
command: ${{ steps.tool-name.outputs.tool_name }} --version