Skip to content

actions-matrix/alpine-matrix-action

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

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

alpine-matrix-action

GitHub Action to generate Alpine releases matrix

Usage

name: Test

on:
  push:
    branches:
      - main

jobs:
  generate:
    runs-on: ubuntu-latest
    steps:
      - id: alpine
        uses: actions-matrix/alpine-matrix-action@v1
    outputs:
      matrix: ${{ steps.alpine.outputs.matrix }}

  build:
    runs-on: ubuntu-latest
    needs: generate
    strategy:
      matrix: ${{ fromJson(needs.generate.outputs.matrix) }}
    steps:
      - run: echo "Build ${{ matrix.os }} ${{ matrix.version }}"

Example

Screenshot

License

Licensed under MIT license.

About

GitHub Action to generate Alpine releases matrix

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages