Bump django-htmx from 1.11.0 to 1.15.0 (#470) #35
This file contains 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
name: Deploy # The name of the workflow | |
on: | |
push: | |
branches: | |
- main #Launch the action on every push on the branch main | |
jobs: | |
build: | |
runs-on: ubuntu-latest # Setup an environment to run the action | |
steps: | |
- uses: actions/checkout@v2 # This actions copy the repository on the environment | |
- uses: akhileshns/[email protected] # This action deploys the content on Heroku | |
with: | |
heroku_api_key: ${{secrets.HEROKU_API_KEY}} #The Heroku api key we stored on our repo secret | |
heroku_app_name: "djangosnippets" #The name of your heroku app - Must be unique in Heroku | |
heroku_email: "[email protected]" #Your heroku yuser name | |