Skip to content

Commit

Permalink
try deploy app as last step of relase
Browse files Browse the repository at this point in the history
  • Loading branch information
vgantchev committed Jul 21, 2023
1 parent aece2d1 commit 85e3dd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ jobs:
- name: Set up gcloud beta
run: gcloud components install beta

- name: deploy api-app
run: gcloud beta run services replace .gcp/hydradx_api_app.yml

- name: deploy cache_rpc_block_height_job
run: gcloud beta run jobs replace .gcp/jobs/cache_rpc_block_height_job.yml

- name: deploy cache_coingecko_tickers_job
run: gcloud beta run jobs replace .gcp/jobs/cache_coingecko_tickers_job.yml

- name: deploy api-app
run: gcloud beta run services replace .gcp/hydradx_api_app.yml
2 changes: 1 addition & 1 deletion clients/sql.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ export async function newSqlClient() {
user: sqlUser(),
password: sqlPass(),
database: sqlDatabase(),
max: 22,
max: 500,
});

const client = await pool.connect();
Expand Down

0 comments on commit 85e3dd7

Please sign in to comment.