Skip to content

Commit 994b2e6

Browse files
committed
revert changes for testing
1 parent 5088025 commit 994b2e6

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/build-push-api.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,5 +67,5 @@ jobs:
6767
6868
- name: Push image
6969
# only push if merged to main
70-
# if: github.ref == "refs/heads/main"
70+
if: github.ref == "refs/heads/main"
7171
run: docker push --all-tags gcr.io/${{ env.GCP_PROJECT_ID }}/${{ inputs.image_name }}

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
runs-on: ubuntu-latest
4646
environment: ${{ inputs.environment || 'development' }}
4747
# only deploy if merged to main
48-
# if: github.ref == "refs/heads/main"
48+
if: github.ref == "refs/heads/main"
4949

5050
steps:
5151
- name: Checkout code

stats-api/stats_api/factory.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@ def create_app():
3838
host=app.config["HOST"],
3939
port=app.config["PORT"],
4040
debug=app.config["DEBUG"],
41-
) # test
41+
)

0 commit comments

Comments
 (0)