We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 25e79f9 + 448661c commit 751bf99Copy full SHA for 751bf99
.github/workflows/AutosarUmlActionExample.yml
@@ -84,10 +84,14 @@ jobs:
84
run: |
85
git fetch origin ${{steps.CommitIds.outputs.baseCommitId}}
86
$contents = git cat-file blob ${{steps.CommitIds.outputs.baseCommitId}}:${{env.ModelName}}.${{env.ModelExtension}}
87
+ echo $contents[1]
88
if($contents -ne $null){
89
+ echo "ps"
90
$contents | Out-File -FilePath "${{env.ModelName}}_base.${{env.ModelExtension}}"
91
+ echo "result=downloaded" >> $env:GITHUB_OUTPUT
92
}
- else{
93
+ else {
94
+ echo "no"
95
echo "result=notFound" >> $env:GITHUB_OUTPUT
96
97
- name: Post new model comment to PR
0 commit comments