We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c2ca03b commit 7ae8ecfCopy full SHA for 7ae8ecf
2 files changed
.github/workflows/ci.yaml
@@ -22,4 +22,4 @@ jobs:
22
uses: docker/build-push-action@v6
23
with:
24
push: true
25
- tags: tyrelfecha/python-app:${GITHUB_SHA::6}
+ tags: tyrelfecha/python-app:${{ github.sha }}
src/app.py
@@ -10,7 +10,7 @@ def details():
10
return jsonify({
11
'time': datetime.datetime.now().strftime("%I:%M:%S%p on %B %d, %Y"),
12
'hostname': socket.gethostname(),
13
- 'message': 'You are doing great, human!'
+ 'message': 'You are doing great, human! '_''
14
})
15
16
@app.route('/api/v1/healthz')
0 commit comments