File tree Expand file tree Collapse file tree 1 file changed +39
-0
lines changed
Expand file tree Collapse file tree 1 file changed +39
-0
lines changed Original file line number Diff line number Diff line change 5151 gradle.properties
5252 **/gradle/**
5353 Scripts/**
54+
55+ compage-packages :
56+ needs : build
57+ runs-on : ubuntu-latest
58+ env :
59+ CURRENT_PKG_DIFF : ./artifacts/current/build/libs/msgraph-sdk-java.jar
60+ PRIOR_PKG_DIFF : ./artifacts/previous/build/libs/msgraph-sdk-java.jar
61+ steps :
62+ - uses : actions/checkout@v2
63+ - name : Set up JDK
64+ uses : actions/setup-java@v2
65+ with :
66+ java-version : ' 16'
67+ distribution : ' adopt'
68+ cache : gradle
69+ - name : Download Current Build
70+ uses : actions/download-artifact@v2
71+ with :
72+ name : drop
73+ path : artifacts/current/
74+ - name : Download Last Successful Build
75+ 76+ with :
77+ workflow : preview-and-release.yml
78+ workflow_conclusion : success
79+ branch : dev
80+ event : push
81+ name : drop
82+ path : artifacts/previous/
83+ - name : Run PKG Diff
84+ run : |
85+ sudo apt install pkgdiff
86+ pkgdiff -hide-unchanged ${{ env.CURRENT_PKG_DIFF }} ${{ env.PRIOR_PKG_DIFF }}
87+ - name : Upload Diff Artifact
88+ 89+ with :
90+ name : diff
91+ path : |
92+ ./pkgdiff_reports/**
You can’t perform that action at this time.
0 commit comments