We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5088025 commit 994b2e6Copy full SHA for 994b2e6
3 files changed
.github/workflows/build-push-api.yml
@@ -67,5 +67,5 @@ jobs:
67
68
- name: Push image
69
# only push if merged to main
70
- # if: github.ref == "refs/heads/main"
+ if: github.ref == "refs/heads/main"
71
run: docker push --all-tags gcr.io/${{ env.GCP_PROJECT_ID }}/${{ inputs.image_name }}
.github/workflows/deploy.yml
@@ -45,7 +45,7 @@ jobs:
45
runs-on: ubuntu-latest
46
environment: ${{ inputs.environment || 'development' }}
47
# only deploy if merged to main
48
49
50
steps:
51
- name: Checkout code
stats-api/stats_api/factory.py
@@ -38,4 +38,4 @@ def create_app():
38
host=app.config["HOST"],
39
port=app.config["PORT"],
40
debug=app.config["DEBUG"],
41
- ) # test
+ )
0 commit comments