Skip to content

Commit

Permalink
Lint fix of pipelines
Browse files Browse the repository at this point in the history
  • Loading branch information
tysseng committed Nov 15, 2024
1 parent dd3e05f commit ea1b953
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
})
.map(([env, include]) => (include ? env : undefined))
.filter(Boolean)
return { environment }
deploy-bff-search:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,12 @@ name: Nightly Deploy

on:
schedule: # Times are in UTC
# - cron: '0 5 * * 1-5'
# - cron: '0 5 * * 1-5'
- cron: '0 15 * * 1-5'

jobs:
deploy-bff:
uses: ./.github/workflows/deploy.yml
secrets: inherit
with:
environment: '["dev", "int", "staging", "beta"]'
environment: '["dev", "int", "staging", "beta"]'

0 comments on commit ea1b953

Please sign in to comment.