Skip to content

Commit

Permalink
Moved app name to variable again
Browse files Browse the repository at this point in the history
  • Loading branch information
simonwoodworth committed Nov 15, 2024
1 parent 5124640 commit 55e68b3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -67,4 +67,4 @@ jobs:
env:
HEROKU_API_KEY: ${{ secrets.HEROKU_API_KEY }}
run: |
git push https://heroku:[email protected]/${{ secrets.HEROKU_APP_NAME }}.git main
git push https://heroku:[email protected]/${{ vars.HEROKU_APP_NAME }}.git main
2 changes: 1 addition & 1 deletion app.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

@app.route('/')
def hello_world(): # put application's code here
powerString = str(mymath.power(5,6))
powerString = str(mymath.power(2,6))
return f'Hello World! The answer is: {powerString}'

if __name__ == '__main__':
Expand Down

0 comments on commit 55e68b3

Please sign in to comment.