19 lines
280 B
YAML
19 lines
280 B
YAML
trigger:
|
|
- '*'
|
|
|
|
pr:
|
|
- '*'
|
|
|
|
pool:
|
|
vmImage: 'ubuntu-latest'
|
|
|
|
steps:
|
|
- checkout: self
|
|
|
|
- script: |
|
|
#!/bin/bash
|
|
|
|
chmod +x ./Script/build_and_push_services2acr.sh
|
|
./Script/build_and_push_services2acr.sh
|
|
displayName: 'Run build_and_push_services2acr.sh'
|