Update Heroku deploy action and install CLI #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This is a basic workflow to help you get started with Actions | ||
|
Check failure on line 1 in .github/workflows/deploy.yml
|
||
| 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/[email protected] # This is the action | ||
| with: | ||
| heroku_api_key: ${{secrets.HEROKU_KEY}} | ||
| heroku_app_name: wizard-world-api #Must be unique in Heroku | ||
| heroku_email: [email protected] | ||
| usedocker: true | ||
| appdir: WizardWorldApi | ||