Skip to content

Commit 6696ae0

Browse files
author
Axel Niklasson
committed
Version 1.9.4
1 parent 6346442 commit 6696ae0

File tree

2 files changed

+19
-19
lines changed

2 files changed

+19
-19
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Run your Flows on [Maestro Cloud](https://cloud.mobile.dev).
77
Add the following to your workflow. Note that you can use the `v1` tag if you want to keep using the latest version of the action, which will automatically resolve to all `v1.minor.patch` versions as they get published.
88

99
```yaml
10-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
10+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
1111
with:
1212
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
1313
app-file: <path_to_your_app_file>
@@ -45,7 +45,7 @@ jobs:
4545
# Android
4646

4747
```yaml
48-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
48+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
4949
with:
5050
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
5151
app-file: app/build/outputs/apk/debug/app-debug.apk
@@ -58,7 +58,7 @@ jobs:
5858
Include the Proguard mapping file to deobfuscate Android performance traces:
5959

6060
```yaml
61-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
61+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
6262
with:
6363
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
6464
app-file: app/build/outputs/apk/release/app-release.apk
@@ -68,7 +68,7 @@ Include the Proguard mapping file to deobfuscate Android performance traces:
6868
# iOS
6969

7070
```yaml
71-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
71+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
7272
with:
7373
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
7474
app-file: <app_name>.app
@@ -80,7 +80,7 @@ Include the Proguard mapping file to deobfuscate Android performance traces:
8080
### .dSYM file
8181

8282
```yaml
83-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
83+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
8484
with:
8585
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
8686
app-file: <app_name>.app
@@ -94,7 +94,7 @@ Include the Proguard mapping file to deobfuscate Android performance traces:
9494
By default, the action is looking for a `.maestro` folder with Maestro flows in the root directory of the project. If you would like to customize this behaviour, you can override it with a `workspace` argument:
9595

9696
```yaml
97-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
97+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
9898
with:
9999
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
100100
app-file: app.zip
@@ -112,7 +112,7 @@ A name will automatically be provided according to the following order:
112112
If you want to override this behaviour and specify your own name, you can do so by setting the `name` argument:
113113

114114
```yaml
115-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
115+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
116116
with:
117117
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
118118
app-file: app.zip
@@ -124,7 +124,7 @@ If you want to override this behaviour and specify your own name, you can do so
124124
If you don't want the action to wait until the Upload has been completed as is the default behaviour, set the `async` argument to `true`:
125125

126126
```yaml
127-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
127+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
128128
with:
129129
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
130130
app-file: app.zip
@@ -134,7 +134,7 @@ If you don't want the action to wait until the Upload has been completed as is t
134134
Alternatively, you might want to still wait for the action but would like to configure the timeout period, set `timeout` argument to a number of minutes:
135135

136136
```yaml
137-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
137+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
138138
with:
139139
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
140140
app-file: app.zip
@@ -146,7 +146,7 @@ Alternatively, you might want to still wait for the action but would like to con
146146
If you want to pass environment variables along with your upload, add a multiline `env` argument:
147147

148148
```yaml
149-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
149+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
150150
with:
151151
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
152152
app-file: app.zip
@@ -162,7 +162,7 @@ You can use Maestro [Tags](https://maestro.mobile.dev/cli/tags) to filter which
162162
You can either pass a single value, or comma-separated (`,`) values.
163163

164164
```yaml
165-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
165+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
166166
with:
167167
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
168168
app-file: app.zip
@@ -177,7 +177,7 @@ You can specify what Android API level to use when running in Maestro Cloud usin
177177
The default API level is 30. [Refer to Maestro Cloud docs](https://cloud.mobile.dev/reference/device-configuration) for available Android emulator API levels.
178178

179179
```yaml
180-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
180+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
181181
with:
182182
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
183183
app-file: app.apk
@@ -191,7 +191,7 @@ You can specify what **major** iOS Version to use when running in Maestro Cloud
191191
The default iOS version is 15. [Refer to Maestro Cloud docs](https://cloud.mobile.dev/reference/device-configuration) for available iOS simulator versions.
192192

193193
```yaml
194-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
194+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
195195
with:
196196
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
197197
app-file: app.zip
@@ -204,12 +204,12 @@ You can use an already uploaded App binary in Maestro Cloud using the `app-binar
204204

205205
```yaml
206206
- id: upload
207-
uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
207+
uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
208208
with:
209209
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
210210
app-file: app.zip
211211
212-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
212+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
213213
with:
214214
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
215215
app-binary-id: ${{ steps.upload.outputs.MAESTRO_CLOUD_APP_BINARY_ID }}
@@ -220,7 +220,7 @@ You can use an already uploaded App binary in Maestro Cloud using the `app-binar
220220
To switch the device locale on a remote device from a default one (en_US) `device-locale` parameter should be used. The value is a combination of lowercase ISO-639-1 code and uppercase ISO-3166-1 code, i.e. "de_DE" for Germany.
221221

222222
```yaml
223-
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
223+
- uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
224224
with:
225225
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
226226
app-file: app.zip
@@ -241,7 +241,7 @@ In order to access these variables you can use the following approach:
241241

242242
```yaml
243243
- id: upload
244-
uses: mobile-dev-inc/action-maestro-cloud@v1.9.3
244+
uses: mobile-dev-inc/action-maestro-cloud@v1.9.4
245245
with:
246246
api-key: ${{ secrets.MAESTRO_CLOUD_API_KEY }}
247247
app-file: <your_app_file>

dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47129,7 +47129,7 @@ const run = () => __awaiter(void 0, void 0, void 0, function* () {
4712947129
deviceLocale: deviceLocale || undefined,
4713047130
};
4713147131
const { uploadId, orgId, appId, appBinaryId: appBinaryIdResponse, } = yield client.robinUploadRequest(request, appFile && appFile.path, workspaceZip, mappingFile && (yield (0, archive_utils_1.zipIfFolder)(mappingFile)));
47132-
const consoleUrl = `https://copilot.mobile.dev/project/${projectId}/maestro-test/app/${appId}/upload/${uploadId}`;
47132+
const consoleUrl = `https://app.robintest.com/project/${projectId}/maestro-test/app/${appId}/upload/${uploadId}`;
4713347133
core.setOutput('ROBIN_CONSOLE_URL', consoleUrl);
4713447134
core.setOutput('ROBIN_APP_BINARY_ID', appBinaryIdResponse);
4713547135
!async &&
@@ -47327,7 +47327,7 @@ function getParameters() {
4732747327
const projectId = core.getInput('project-id', { required: false }) || undefined;
4732847328
const apiUrl = core.getInput('api-url', { required: false }) ||
4732947329
(projectId
47330-
? `https://api.copilot.mobile.dev/v2/project/${projectId}`
47330+
? `https://api.app.robintest.com/v2/project/${projectId}`
4733147331
: 'https://api.mobile.dev');
4733247332
const name = core.getInput('name', { required: false }) || getInferredName();
4733347333
const apiKey = core.getInput('api-key', { required: true });

0 commit comments

Comments
 (0)