Skip to content
package

GitHub Action

Setup git-annex

v1.0.0 Latest version

Setup git-annex

package

Setup git-annex

Installs git-annex on Linux, macOS, or Windows

Installation

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

              

- name: Setup git-annex

uses: jstritch/setup-git-annex@v1.0.0

Learn more about this action in jstritch/setup-git-annex

Choose a version

CI Status ko-fi Liberapay Patreon

setup-git-annex

Installs git-annex on Linux, macOS, or Windows. git-annex is an integrated alternative to storing large files in Git.

Example

The workflow snippet shown below installs git-annex on Linux, macOS, and Windows. Setting fail-fast to false allows other jobs in the matrix to continue if any job in the matrix fails.

Once installed, the help command is invoked to demonstrate git-annex is available from the command line.

jobs:
  test:

    strategy:
      matrix:
        os:
          - ubuntu-latest
          - macos-latest
          - windows-latest
      fail-fast: false

    runs-on: ${{ matrix.os }}

    steps:
      - uses: actions/checkout@v4
      - uses: jstritch/setup-git-annex@v1
      - run: git annex help