Skip to content

Feature branch2 #137

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
8 changes: 4 additions & 4 deletions .github/workflows/pythonapp.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: Python application

on:
push:
pull_request:
paths:
- 'python/*'

Expand All @@ -23,6 +23,6 @@ jobs:
- name: Build & Push Image
run: |
cd ./python
echo "${{ secrets.DOCKERPW }}" | docker login -u "[your dockerhub login here]" --password-stdin
docker image build -t [your dockerhub username here]/gitops:hellov1.0 .
docker push [your docker hub username here]/gitops:hellov1.0
echo "${{ secrets.DOCKERPW }}" | docker login -u "aakram786" --password-stdin
docker image build -t aakram786/gitops:hellov1.2 .
docker push aakram786/gitops:hellov1.2
2 changes: 1 addition & 1 deletion python/app.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

@app.route("/")
def hello():
return "Hello World!"
return "Hello LA Student! Pull request"

if __name__ == "__main__":
app.run(host='0.0.0.0', port=8000)