File tree 2 files changed +18
-1
lines changed
2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change
1
+ name : Test Version Bump Util
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - main
7
+
8
+ pull_request :
9
+
10
+ jobs :
11
+ run-version-bump :
12
+ name : Run Version Bump
13
+ # We intentionally run this on ubuntu because the release workflow also runs on ubuntu, which uses the version bump util.
14
+ runs-on : ubuntu-latest
15
+ steps :
16
+ - uses : actions/checkout@v4
17
+ # We don't care which version we bump to, as long as it's a valid semver
18
+ - run : make bump-version TO=100.0.0
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ let restrictFiles = [
20
20
" ./Sources/Configuration/Versioning.xcconfig " ,
21
21
" ./Sources/Configuration/SentrySwiftUI.xcconfig " ,
22
22
" ./Samples/Shared/Config/Versioning.xcconfig " ,
23
- " ./Samples/SessionReplay-CameraTest/config/Versioning.xcconfig " ,
24
23
" ./Samples/iOS-Swift/iOS-Swift/Sample.xcconfig "
25
24
]
26
25
You can’t perform that action at this time.
0 commit comments