File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ name: Generate a content aware hash for the Flutter Engine
77on : workflow_dispatch
88
99jobs :
10- hash :
10+ generate-engine-content- hash :
1111 runs-on : ubuntu-latest
1212 steps :
1313 - name : Checkout code
1919
2020 - name : Generate Hash
2121 run : |
22- git ls-tree HEAD DEPS bin/internal/release-candidate-branch.version engine | git hash-object --stdin
22+ engine_content_hash=$(git ls-tree HEAD DEPS bin/internal/release-candidate-branch.version engine | git hash-object --stdin)
23+ # test notice annotation for retrival from api
24+ echo "::notice ::{\"engine_content_hash\": \"${engine_content_hash}\"}"
25+ # test summary writing
26+ echo "{\"engine_content_hash\": \"${engine_content_hash}\"" >> $GITHUB_STEP_SUMMARY
You can’t perform that action at this time.
0 commit comments