Skip to content
You're viewing an older version of this GitHub Action. Do you want to see the latest version instead?
package

GitHub Action

ABC Install

v1.0.1

ABC Install

package

ABC Install

Install Apt, Brew, and Choco dependencies in one action

Installation

Copy and paste the following snippet into your .yml file.

              

- name: ABC Install

uses: lyricwulf/[email protected]

Learn more about this action in lyricwulf/abc

Choose a version

abc

Simply your build actions with Apt, Brew, and Choco dependencies in one action. Easy as ABC!

Usage

jobs:
  foo:
    runs-on: ${{ matrix.os }}
    strategy:
      matrix:
        include: 
          - os: windows-latest
          - os: macos-latest
          - os: ubuntu-latest
    steps: 
      - uses: lyricwulf/abc@v1
        with: 
          linux: libfoo bar-cli
          macos: lib-from-brew other-lib
          windows: lib-from-choco another-lib
          # Can also do combo of platforms
          unix: lib-for-linux-and-mac not-for-windows
          all: cross-platform-lib

Todo