deployer build test #2
Workflow file for this run
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 Deployer image | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
image: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Granting private modules access | |
run: | | |
git config --global url."https://${{ secrets.ACCESS_TOKEN }}:[email protected]/IBM-Blockchain".insteadOf "https://github.com/IBM-Blockchain" | |
- name: Checkout fabric-deployer repo | |
uses: actions/checkout@v3 | |
- name: Build | |
run: make image |