Skip to content

Attempt to fix deploy thing #7

Attempt to fix deploy thing

Attempt to fix deploy thing #7

Workflow file for this run

name: Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Deploy to Heroku
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
HEROKU_APP_NAME: ${{ vars.HEROKU_APP_NAME || 'sthlmrb' }}
run: |
git remote add heroku "https://heroku:${HEROKU_API_KEY}@git.heroku.com/${HEROKU_APP_NAME}.git"
git push heroku master