File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 67
67
if : ${{ github.ref == 'refs/heads/main' && github.event_name == 'push' && github.repository_owner == 'supabase' }}
68
68
runs-on : ubuntu-latest
69
69
name : " Run release-please"
70
+ outputs :
71
+ should_publish : steps.release.outputs.release_created
70
72
permissions :
71
73
id-token : write # IMPORTANT: this permission is mandatory for trusted publishing
72
74
contents : write # needed for github actions bot to write to repo
80
82
manifest-file : .release-please-manifest.json
81
83
publish :
82
84
needs : release-please
83
- if : ${{ needs.release-please.outputs.release_created }}
85
+ if : ${{ needs.release-please.outputs.should_publish }}
84
86
runs-on : ubuntu-latest
85
87
name : " Publish to PyPi"
86
88
environment :
Original file line number Diff line number Diff line change 50
50
"type" : " toml" ,
51
51
"path" : " src/storage/pyproject.toml" ,
52
52
"jsonpath" : " $.project.version"
53
+ },
54
+ {
55
+ "type" : " generic" ,
56
+ "path" : " src/realtime/src/realtime/version.py"
57
+ },
58
+ {
59
+ "type" : " toml" ,
60
+ "path" : " src/realtime/pyproject.toml" ,
61
+ "jsonpath" : " $.project.version"
53
62
}
54
63
]
55
64
}
Original file line number Diff line number Diff line change 1
1
[project ]
2
2
name = " realtime"
3
- version = " 2.20 .0" # {x-release-please-version}
3
+ version = " 2.21 .0" # {x-release-please-version}
4
4
description = " "
5
5
authors = [
6
6
{ name = " Joel Lee" , email =" joel@joellee.org" },
You can’t perform that action at this time.
0 commit comments