Skip to content

New github actions file test #244

New github actions file test

New github actions file test #244

Workflow file for this run

# From https://dev.to/heroku/deploying-to-heroku-from-github-actions-29ej
name: Push Container to Heroku
on:
push:
branches:
- main
- howdy
- dev
env:
HEROKU_APP_NAME: tamuhack-registration
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Download and install Heroku CLI
run: curl https://cli-assets.heroku.com/install.sh | sh
- name: Login to Heroku Container registry
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: heroku container:login
- name: Build and push
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: heroku container:push -a $HEROKU_APP_NAME web
- name: Release
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: heroku container:release -a $HEROKU_APP_NAME web