Skip to content

Merge branch 'release/v1.1.0' into main #22

Merge branch 'release/v1.1.0' into main

Merge branch 'release/v1.1.0' into main #22

Workflow file for this run

# This is a basic workflow to help you get started with Actions
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: Deploy to Heroku
uses: akhileshns/heroku-deploy@v3.12.12 # 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