Skip to content

Merge branch 'develop' #24

Merge branch 'develop'

Merge branch 'develop' #24

Workflow file for this run

# This is a basic workflow to help you get started with Actions

Check failure on line 1 in .github/workflows/deploy.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy.yml

Invalid workflow file

(Line: 27, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory
name: Deploy
on:
push:
# Sequence of patterns matched against refs/tags
tags:
- 'v?[0-9]+\.[0-9]+\.[0-9]+'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
# This workflow contains a single job called "build"
build:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- name: Install Heroku CLI # <- IMPORTANT!!! Make sure the cli is installed before using the action
run: |
curl https://cli-assets.heroku.com/install.sh | sh
- name: Deploy to Heroku
- uses: akhileshns/heroku-deploy@v3.14.15 # This is the action
with:
heroku_api_key: ${{secrets.HEROKU_KEY}}
heroku_app_name: wizard-world-api #Must be unique in Heroku
heroku_email: truemosspiglets@gmail.com
usedocker: true
appdir: WizardWorldApi