Skip to content

turtlebrowser/get-conan

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Folders and files

NameName
Last commit message
Last commit date

Latest commit

e41c1e0 · Feb 28, 2023

History

14 Commits
Feb 28, 2023
Dec 5, 2020
Aug 12, 2022
Feb 28, 2023

Repository files navigation

CI

Get Conan GitHub Action

Gets the most recent Conan

Works on: Linux, Windows and MacOS

Inputs

No inputs

Outputs

version

The version string from "conan --version"

Example usage

To install the latest conan version

    - name: Install Conan
      id: conan
      uses: turtlebrowser/get-conan@main

    - name: Conan version
      run: echo "${{ steps.conan.outputs.version }}"

It is also possible to specify the wanted conan version, by using the with:/version input to the action.

    - name: Install Conan
      id: conan
      uses: turtlebrowser/get-conan@main
      with:
        version: 1.50.0

    - name: Conan version
      run: echo "${{ steps.conan.outputs.version }}"