All Projects → jctaveras → heroku-deploy

jctaveras / heroku-deploy

Licence: other
A simple action to build, push and deploy your dockerized app to your Heroku Application

Programming Languages

typescript
32286 projects

Projects that are alternatives of or similar to heroku-deploy

yoda
Simple tool to dockerize and manage deployment of your project
Stars: ✭ 69 (+72.5%)
Mutual labels:  deploy, container
Ko
Build and deploy Go applications on Kubernetes
Stars: ✭ 3,755 (+9287.5%)
Mutual labels:  deploy, container
Droot
The super-simple chroot-based application container engine.
Stars: ✭ 177 (+342.5%)
Mutual labels:  deploy, container
heroku
Deploy Prime CMS to Heroku in a single click
Stars: ✭ 16 (-60%)
Mutual labels:  heroku, deploy
Dotnetlabs
.NET Labs -- Show Me the Tips and Tricks and Code
Stars: ✭ 135 (+237.5%)
Mutual labels:  heroku, container
Deploying Flask To Heroku
Deploying a Flask App To Heroku Tutorial
Stars: ✭ 81 (+102.5%)
Mutual labels:  heroku, deploy
Deploying Django To Heroku Tutorial
Deploying a Django App To Heroku Tutorial
Stars: ✭ 20 (-50%)
Mutual labels:  heroku, deploy
Rocket
Automated software delivery as fast and easy as possible 🚀
Stars: ✭ 217 (+442.5%)
Mutual labels:  heroku, deploy
heroku-stack-container-repo
After deploying this repo your Heroku app will have stack as container. After that you just have to deploy your own original app.
Stars: ✭ 43 (+7.5%)
Mutual labels:  heroku, container
codewind-eclipse
Plugin for developing cloud-native, containerized applications from Eclipse IDE
Stars: ✭ 13 (-67.5%)
Mutual labels:  container
heroku-local
this code is now in https://github.com/heroku/cli
Stars: ✭ 21 (-47.5%)
Mutual labels:  heroku
TGInlineGIF
Telegram Inline tenor gif search bot.
Stars: ✭ 19 (-52.5%)
Mutual labels:  heroku
react-phoenix-users-boilerplate
Elixir/Phoenix + React + users template/boilerplate.
Stars: ✭ 71 (+77.5%)
Mutual labels:  heroku
travel app
Travel App using Flutter 💙
Stars: ✭ 74 (+85%)
Mutual labels:  heroku
pydocker
Easy generator Dockerfile for humans
Stars: ✭ 29 (-27.5%)
Mutual labels:  deploy
takomo
Organize, parameterize and deploy your CloudFormation stacks
Stars: ✭ 27 (-32.5%)
Mutual labels:  deploy
Malicious-Urlv5
A multi-layered and multi-tiered Machine Learning security solution, it supports always on detection system, Django REST framework used, equipped with a web-browser extension that uses a REST API call.
Stars: ✭ 35 (-12.5%)
Mutual labels:  heroku
XUnityDeploy
Compile Unity to iOS[Android] client
Stars: ✭ 18 (-55%)
Mutual labels:  deploy
docker-tor
TOR Server Docker image
Stars: ✭ 32 (-20%)
Mutual labels:  container
Covid-19-API
A realtime API for coronavirus cases on Heroku. Data automatically updated every 10 minutes!
Stars: ✭ 59 (+47.5%)
Mutual labels:  heroku

Heroku Deploy - GitHub Action

A simple action to build, push and deploy containers to your Heroku app.

How to use it

name: '' # set whatever name you want to your github job
on: {} # set the events you would like to trigger this job
jobs:
  build:
    runs-on: ubuntu-latest
    steps:
      - name: Checkout
        uses: actions/checkout@v2
      - name: Build, Push and Deploy to Heroku # set whatever name you want to this step
        id: heroku
        uses: jctaveras/[email protected] # use the latest version of the action
        with:
          email: ${{ secrets.HEROKU_EMAIL }} # your heroku email
          api_key: ${{ secrets.HEROKU_API_KEY }} # your heroku api key
          app_name: ${{ secrets.HEROKU_APP_NAME }} # you aplication name
          dockerfile_path: '.' # set the path to the folder where the Dockerfile is located
          process_type: 'web' # Specify the process type you want to build and release
Variables Description Required
email Heroku Email Account
api_key Heroku API Key
app_name Heroku App Name
dockerfile_path Path where your Docker File
procees_type A space separated list of process you want to build and release
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].