Skip to content
send

GitHub Action

Heroku Deploy with Telegram

v1.0 Latest version

Heroku Deploy with Telegram

send

Heroku Deploy with Telegram

A simple Github Action to deploy to Heroku and notify via Telegram

Installation

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

              

- name: Heroku Deploy with Telegram

uses: Suvink/heroku-deploy@v1.0

Learn more about this action in Suvink/heroku-deploy

Choose a version

Heroku Deploy with Telegram

A simple Github Action to deploy to Heroku and notify via Telegram.

Generic badge Generic badge GitHub stars
forthebadge

Usage

Goto Actions tab on your Github Repository and create a new workflow. Use the following template to create your action.

name: Heroku Deploy with Telegram
  'on': 
    push:
      branches: [master]
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2

      - name: Deploy to Heroku
        uses: Suvink/heroku-static@v0.3
        with:
        heroku_app_name: Your unique Heroku app name
        heroku_email: Email you used for Heroku
        dontuseforce: false #Disable force push [optional]
        buildpack: Your buildpack 
        env:
        HEROKU_TOKEN: '${{ secrets.HEROKU_TOKEN }}'
        BOT_TOKEN: '${{ secrets.BOT_TOKEN }}'
        CHAT_ID: '${{ secrets.CHAT_ID }}'

Secrets

  • HEROKU_TOKEN : [Required] Refer here to get a Heroku Access Token.
  • BOT_TOKEN: [Required] Refer here to get a Telegram Bot Token.
  • CHAT_ID: [Required] Add @chatid_echo_bot to the chat you want and it will echo your chat ID starting with a "-".

Licence

This project is licensed under the MIT License - see the LICENSE file for details