You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
description: 'DEPRECATED: Sets up collie cli in your GitHub Actions workflow. The collie CLI has been sunset and this action is no longer maintained.'
inputs:
collie-version:
description: 'The version of collie cli that this action will set up.'
default: 'latest'
required: false
runs:
using: "composite"
steps:
- name: Deprecation warning
shell: bash
run: |
echo "::warning::The meshcloud/setup-collie action is deprecated. The collie CLI has been sunset and this action is no longer maintained. Please remove this action from your workflow."
- name: Create local bin folder and add it to Path
shell: bash
run: |
mkdir -p ~/.local/bin
echo "~/.local/bin" >> $GITHUB_PATH
- name: Download collie cli
shell: bash
run: |
if [ ${{ inputs.collie-version }} = 'latest' ]; then