Skip to content

Commit

Permalink
Fix package ARM pipeline (#95)
Browse files Browse the repository at this point in the history
  • Loading branch information
galiacheng committed Mar 5, 2021
1 parent c7c75db commit a02a535
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/package.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,11 @@ jobs:
run: |
cd ${{ env.repoName }}
pidType=${{ github.event.inputs.pidType }}
if [[ '${pidType}' == 'oracle' ]];then
if [[ "${pidType}" == "oracle" ]];then
echo "using oracle pid"
mvn -Ptemplate-validation-tests clean install
else
echo "using ms pid"
mvn -Ptemplate-validation-tests clean install -Ddev
fi
Expand Down

0 comments on commit a02a535

Please sign in to comment.