/setup-aseprite-cli-action

GitHub Action to build and install the Aseprite CLI.

Primary LanguageShell

neomura/setup-aseprite-cli-action

GitHub Action to build and install the Aseprite CLI.

License

While this repository is MIT licensed, it includes a Git submodule of the Aseprite repository, which uses a proprietary license.

The owner and maintainer of Aseprite has given their approval to the building and executing of the source code for CI purposes, but you should make your own checks to ensure that your usage of this GitHub Action is valid within the Aseprite license agreement.

Supported virtual environments

Supported virtual environments are listed in the test workflow.

Usage

on: [push]

jobs:
  example:
    runs-on: ubuntu-latest
    steps:

    # Load your repository.
    - uses: actions/checkout@v2

    # Install MSVC - only needed on Windows.
    - uses: ilammy/msvc-dev-cmd@v1

    # Install this github action.
    - uses: neomura/setup-aseprite-cli-action@v1.0.1

    # Aseprite is now available on the path.
    - run: aseprite --help
      shell: bash