This action will run kubectl
to update the given deployment container with a new image
Publish the received content to kairos server
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 |
- 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
andbash
installed, this action usecomposite actions
so we can't install tolls directly, these tools should be installed in the action who calls this action
Enjoy 🎉