File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 77 pull_request :
88
99jobs :
10+ skip :
11+ runs-on : ubuntu-latest
12+ steps :
13+ - name : Skip
14+ run : exit 1
1015 getPackages :
1116 runs-on : ubuntu-latest
17+ needs :
18+ - skip
1219 outputs :
1320 matrix : ${{ env.matrix }}
1421 steps :
Original file line number Diff line number Diff line change 1+ # name: Release-PR
2+ # on:
3+ # pull_request:
4+ # types: [closed]
15name : Release-PR
26on :
37 pull_request :
4- types : [closed]
58
69jobs :
710 Pre-Check :
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ function patchVersion() {
77 local pwd=$( echo $PWD )
88
99 cd packages/$package
10+ echo " Patching $package to version $version "
1011 poetry version $version
1112 if [ " ${# deps[@]} " -ne " 0" ]; then
1213 if [ " ${deps[0]} " != " " ]; then
@@ -28,6 +29,7 @@ function publishPackage() {
2829 local pwd=$( echo $PWD )
2930
3031 cd packages/$package
32+ poetry version
3133 poetry publish --build --username $username --password $password
3234 cd $pwd
3335}
You can’t perform that action at this time.
0 commit comments