Skip to content

Commit

Permalink
Deploy UAT once and add scheduled deploy
Browse files Browse the repository at this point in the history
RISDEV-0000
  • Loading branch information
HPrinz committed Oct 16, 2023
1 parent d3b7c07 commit 7fb4f89
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ on:
branches: [main]
pull_request:
branches: [main]
schedule:
- cron: "0 18 * * *" # Every day at 8pm
# Allow to run this workflow manually
workflow_dispatch:

Expand Down Expand Up @@ -900,8 +902,9 @@ jobs:
deploy-uat:
runs-on: ubuntu-latest
if: |
github.ref == 'refs/heads/main' &&
needs.deployment-time-check.outputs.between-8-and-20 == 'false'
github.ref == 'refs/heads/main'
# &&
# needs.deployment-time-check.outputs.between-8-and-20 == 'false'
concurrency: deploy-uat
environment: uat
needs:
Expand Down

0 comments on commit 7fb4f89

Please sign in to comment.