GitHub Actions to generate a build matrix that's easy to work with. https://ednz.fr
Go to file
2024-02-28 18:43:12 +01:00
action test(action): debug 2024-02-28 18:43:12 +01:00
action.yml feat(action): add basic first action version 2024-02-28 18:22:13 +01:00
Dockerfile feat(action): add basic first action version 2024-02-28 18:22:13 +01:00
LICENSE feat(action): add basic first action version 2024-02-28 18:22:13 +01:00
README.md feat(action): add basic first action version 2024-02-28 18:22:13 +01:00

Action: generate docker build matrix

This repository is only a mirror. Development and testing is done on a private gitea server.

This action generates a docker build matrix from a json-formatted list of versions

Parameters

The following parameters can be used as step.with keys:

Name Type Default Required Description
versions String yes Json Formatted List as a String

Example usage

jobs:
  publish:
    - name: Checkout Code
      uses: actions/checkout@v4

    - name: Generate docker build matrix
      uses: ednz-cloud/docker-matrix-generator@v1
      with:
        versions: '["2.2.8","2.2.7","2.2.4","2.2.3","2.1.5","2.1.4","2.1.3","2.1.2","2.1.1","2.1.0","2.0.20","2.0.19","2.0.18","2.0.17","2.0.16","2.0.15","2.0.14","2.0.13"]'