DamageAssessment_Backend/azure-pipelines.yml
2023-10-17 16:12:46 +00:00

17 lines
442 B
YAML

trigger:
- '*' # You can define triggers here to specify when the pipeline should run
pool:
vmImage: 'ubuntu-latest' # Use the appropriate VM image
steps:
- script: |
# Set the execution policy to allow script execution
chmod +x Scripts/build_and_push_services2acr.sh
# Execute the script
./Scripts/build_and_push_services2acr.sh
displayName: 'Run build_and_push_services2acr.sh'
displayName: 'Run Script'