Skip to content

Latest commit

 

History

History
27 lines (20 loc) · 1.11 KB

README.md

File metadata and controls

27 lines (20 loc) · 1.11 KB

Kairos publish action

This action will run kubectl to update the given deployment container with a new image Publish the received content to kairos server

Inputs

Input Required Description
kairos_url yes Kairos server publish endpoint, https://kairos.domain.com/deploy
kairos_token yes Authentication token to be able to upload artifacts
zipile yes zipfile that will be published to Kairos server

Usage

- name: Publish to Kairos
  uses: resuelve/kairos-publish-action@v1
    with:
      kairos_url: ${{ secrets.KAIROS_URL }}
      kairos_token: ${{ secrets.KAIROS_TOKEN }}
      zipile: PATH_TO_ZIPFILE

When using this action make sure you have curl and bash installed, this action use composite actions so we can't install tolls directly, these tools should be installed in the action who calls this action

Enjoy 🎉