Deploy-PROD #10596
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Deploy-PROD | |
# Controls when the workflow will run | |
on: | |
schedule: | |
- cron: '0/10 * * * *' | |
# GITHUB_REF: Default branch | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: | |
inputs: | |
whatIf: | |
description: 'Enable WhatIf Mode' | |
type: boolean | |
required: true | |
default: true | |
env: | |
PROFILE: Sales | |
jobs: | |
Deployment: | |
runs-on: ubuntu-latest | |
environment: Production | |
container: | |
image: ghcr.io/pbi-tools/pbi-tools-core:1.0.0-rc.5_preview.1 | |
steps: | |
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it | |
- uses: actions/checkout@v3 | |
- name: pbi-tools info | |
run: | | |
/app/pbi-tools/pbi-tools.core info | |
- name: pbi-tools deploy (WhatIf) | |
if: ${{ github.event.inputs.whatIf == 'true' }} | |
run: | | |
/app/pbi-tools/pbi-tools.core deploy . "$PROFILE" Production -whatIf | |
env: | |
PBI_CLIENT_SECRET: ${{ secrets.PBI_CLIENT_SECRET }} | |
- name: pbi-tools deploy | |
if: ${{ github.event.inputs.whatIf != 'true' }} | |
run: | | |
/app/pbi-tools/pbi-tools.core deploy . "$PROFILE" Production | |
env: | |
PBI_CLIENT_SECRET: ${{ secrets.PBI_CLIENT_SECRET }} |