Skip to content

Commit

Permalink
Disable automatic deployments (#1000)
Browse files Browse the repository at this point in the history
* For right now, the api container in AWS doesn't have enough memory
  to run AND be able to do automatic deployments.  Disable automatic
  deployments in favor of having more memory to run the app.
  • Loading branch information
chrisvire committed Jul 18, 2023
1 parent a727530 commit c7c754e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,6 @@ jobs:
- name: Build API
run: ./scripts/build-api.sh $GITHUB_SHA $GITHUB_REF $GITHUB_EVENT_NAME

- name: Deploy
if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch') && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')
run: ./scripts/deploy-to-ecs.sh $GITHUB_SHA $GITHUB_REF
# - name: Deploy
# if: (github.event_name == 'push' || github.event_name == 'workflow_dispatch' || github.event_name == 'repository_dispatch') && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/master')
# run: ./scripts/deploy-to-ecs.sh $GITHUB_SHA $GITHUB_REF

0 comments on commit c7c754e

Please sign in to comment.