Skip to content
server

GitHub Action

keel webhook deploy

1.0.0 Latest version

keel webhook deploy

server

keel webhook deploy

Calls keel.sh webhook to deploy docker image

Installation

Copy and paste the following snippet into your .yml file.

              

- name: keel webhook deploy

uses: jaapio/keelsh-deploy@1.0.0

Learn more about this action in jaapio/keelsh-deploy

Choose a version

keelsh-deploy

Deploy on kubernetes via keel.sh webhook

This action provides an easy interface to interact from github actions to keel.sh native webhook. The action requires a working keel setup in your cluster. Consult the docs of keel how to setup keel properly.

The example below shows how to use this action

on: [release]
name: Deploy
jobs:
  deploy:
    runs-on: ubuntu-latest
    steps:
      - name: deploy
        uses: jaapio/keelsh-deploy@master
        with:
          keelBaseUrl: https://keel.yourcluster.dev:9300
          image: 'myproject/image'
          tag: ${{ github.event.tag_name }}