Skip to content

Latest commit

 

History

History
28 lines (23 loc) · 562 Bytes

README.md

File metadata and controls

28 lines (23 loc) · 562 Bytes

Chef Supermarket Action

Shares cookbook on the public supermarket.

Workflow example

name: chef supermaket
on:
  release:
    types: [published]

jobs:
  share:
    runs-on: ubuntu-latest

    steps:
      - name: Check out code
        uses: actions/checkout@master
      - name: Run Chef Supermarket Share
        uses: afaundez/chef-supermarket-action@master
        secrets:
          - SUPERMARKET_API_KEY
        with:
          cookbook: <the cookbook name>
          category: <the category>
          user: <the supermarket username>