Skip to content

Makepad-fr/setup-yq-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

7 Commits
 
 
 
 

Repository files navigation

setup-yq-action

This GitHub Action installs the yq CLI tool, a lightweight and portable command-line YAML processor.

Usage

To use this action in your GitHub workflows, add a step in your workflow YAML file as shown below:

name: CI

on: [push, pull_request]

jobs:
  build:
    runs-on: ubuntu-latest

    steps:
      - name: Checkout repository
        uses: actions/checkout@v3
      
      - name: Install yq
        uses: Makepad-fr/setup-yq-action@main
        with:
          version: '4.6.0'

      # Add more steps here that require yq