add workflow pipeline to build image when push commit #1
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: Build on mq-servicebus push | |
on: | |
push: | |
branches: | |
- mq-servicebus | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Run build script | |
run: ./azure-java-migration-copilot-client/build.sh |