You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
-
# RNEF iOS GitHub Action
1
+
# Rock iOS GitHub Action
2
2
3
-
This GitHub Action enables remote building of iOS applications using RNEF (React Native Enterprise Framework). It supports both simulator and device builds, with automatic artifact caching and code signing capabilities.
3
+
This GitHub Action enables remote building of iOS applications using [Rock](https://rockjs.dev). It supports both simulator and device builds, with automatic artifact caching and code signing capabilities.
4
4
5
5
## Features
6
6
@@ -60,7 +60,7 @@ jobs:
60
60
|`provisioning-profile-base64`| Base64 encoded provisioning profile | No | - |
61
61
|`provisioning-profile-name`| Name of the provisioning profile | No | - |
62
62
|`keychain-password`| Password for temporary keychain | No | - |
63
-
|`rnef-build-extra-params`| Extra parameters for rnef build:ios| No | - |
63
+
|`rock-build-extra-params`| Extra parameters for rock build:ios| No | - |
64
64
|`comment-bot`| Whether to comment PR with build link | No |`true`|
Copy file name to clipboardExpand all lines: action.yml
+27-27Lines changed: 27 additions & 27 deletions
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,5 @@
1
1
name: 'Remote Build - iOS'
2
-
description: 'Github implementation of the RNEF Remote Build for iOS'
2
+
description: 'Github implementation of the Rock Remote Build for iOS'
3
3
4
4
branding:
5
5
icon: 'box'
@@ -14,7 +14,7 @@ inputs:
14
14
required: false
15
15
default: '.'
16
16
destination:
17
-
description: 'Destination to build to: "simulator" or "device". Using "device" runs "rnef build:ios --archive" and code signing settings (certificate, provisioning profile, keychain password) are required.'
17
+
description: 'Destination to build to: "simulator" or "device". Using "device" runs "rock build:ios --archive" and code signing settings (certificate, provisioning profile, keychain password) are required.'
18
18
required: true
19
19
default: 'simulator'# 'simulator' or 'device'
20
20
scheme:
@@ -45,8 +45,8 @@ inputs:
45
45
keychain-password:
46
46
description: '[Device Builds] Password that will protect temporary keychain used for signing (can be a random string)'
47
47
required: false
48
-
rnef-build-extra-params:
49
-
description: 'Extra parameters to pass to "rnef build:ios"'
48
+
rock-build-extra-params:
49
+
description: 'Extra parameters to pass to "rock build:ios"'
50
50
required: false
51
51
comment-bot:
52
52
description: 'Whether to send a comment under PR with the link to the generated build'
0 commit comments