Skip to content

Commit 57d81be

Browse files
committed
Change the TA-CLI version to always latest
1 parent e12c95a commit 57d81be

File tree

2 files changed

+18
-18
lines changed

2 files changed

+18
-18
lines changed

README.md

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,28 @@
11
# [<img src="https://assets.testapp.io/logo/blue.svg" alt="TestApp.io"/>](https://testapp.io/) Github Action
22

3-
### Current version: v4.0-BETA
3+
### Current version: v5
44

55
> This is in BETA mode. Your feedback is highly appreciated!
66
7-
[![Workflow to upload apk and ipa to TestApp.io app distribution](https://github.com/testappio/github-action/actions/workflows/main.yml/badge.svg)](https://github.com/testappio/github-action/actions/workflows/main.yml)
7+
[![Workflow to upload APK and IPA to TestApp.io app distribution](https://github.com/testappio/github-action/actions/workflows/main.yml/badge.svg)](https://github.com/testappio/github-action/actions/workflows/main.yml)
88

9-
This action uploads artifacts (.apk or .ipa) to TestApp.io and notifying your team members about it.
9+
This action uploads artifacts (.apk or .ipa) to TestApp.io and notifies your team members about it.
1010

1111
## Configuration
1212

13-
*More info here: [https://help.testapp.io/ta-cli](https://help.testapp.io/ta-cli/)*
13+
_More info here: [https://help.testapp.io/ta-cli](https://help.testapp.io/ta-cli/)_
1414

15-
| Key | Description | Env Var(s) | Default |
16-
| ----------------- | ------------------------------------------------------------------------------------------------------- | --------------------------- | ------- |
17-
| api_token | You can get it from https://portal.testapp.io/settings/api-credentials | TESTAPPIO_API_TOKEN | |
18-
| app_id | You can get it from your app page at [https://portal.testapp.io/apps](https://portal.testapp.io/apps?select-for-integrations) | TESTAPPIO_APP_ID | |
19-
| release | It can be either both or Android or iOS | TESTAPPIO_RELEASE | |
20-
| apk_file | Path to the Android APK file | TESTAPPIO_ANDROID_PATH | |
21-
| ipa_file | Path to the iOS IPA file | TESTAPPIO_IOS_PATH | |
22-
| release_notes | Manually add the release notes to be displayed for the testers | TESTAPPIO_RELEASE_NOTES | |
23-
| git_release_notes | Collect release notes from the latest git commit message to be displayed for the testers: true or false | TESTAPPIO_GIT_RELEASE_NOTES | true |
24-
| git_commit_id | Include the last commit ID in the release notes (works with both release notes options): true or false | TESTAPPIO_GIT_COMMIT_ID | false |
25-
| notify | Send notifications to your team members about this release: true or false | TESTAPPIO_NOTIFY | false |
15+
| Key | Description | Env Var(s) | Default |
16+
| ----------------- | ----------------------------------------------------------------------------------------------------------------------------- | --------------------------- | ------- |
17+
| api_token | You can get it from https://portal.testapp.io/settings/api-credentials | TESTAPPIO_API_TOKEN | |
18+
| app_id | You can get it from your app page at [https://portal.testapp.io/apps](https://portal.testapp.io/apps?select-for-integrations) | TESTAPPIO_APP_ID | |
19+
| release | It can be either both or Android or iOS | TESTAPPIO_RELEASE | |
20+
| apk_file | Path to the Android APK file | TESTAPPIO_ANDROID_PATH | |
21+
| ipa_file | Path to the iOS IPA file | TESTAPPIO_IOS_PATH | |
22+
| release_notes | Manually add the release notes to be displayed for the testers | TESTAPPIO_RELEASE_NOTES | |
23+
| git_release_notes | Collect release notes from the latest git commit message to be displayed for the testers: true or false | TESTAPPIO_GIT_RELEASE_NOTES | true |
24+
| git_commit_id | Include the last commit ID in the release notes (works with both release notes options): true or false | TESTAPPIO_GIT_COMMIT_ID | false |
25+
| notify | Send notifications to your team members about this release: true or false | TESTAPPIO_NOTIFY | false |
2626

2727
## Requirements
2828

@@ -57,7 +57,7 @@ jobs:
5757
5858
5959
- name: Upload artifact to TestApp.io
60-
uses: testappio/github-action@v4
60+
uses: testappio/github-action@v5
6161
with:
6262
api_token: ${{secrets.TESTAPPIO_API_TOKEN}}
6363
app_id: ${{secrets.TESTAPPIO_APP_ID}}
@@ -101,7 +101,7 @@ jobs:
101101
team-id: ${{ secrets.TEAM_ID }}
102102
103103
- name: Upload artifact to TestApp.io
104-
uses: testappio/github-action@v4
104+
uses: testappio/github-action@v5
105105
with:
106106
api_token: ${{ secrets.TESTAPPIO_API_TOKEN }}
107107
app_id: ${{ secrets.TESTAPPIO_APP_ID }}

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ branding:
2929
runs:
3030
using: "composite"
3131
steps:
32-
- run: curl -Ls https://github.com/testappio/cli/releases/download/v1.0.4/install | bash
32+
- run: curl -Ls https://github.com/testappio/cli/releases/latest/download/install | bash
3333
shell: bash
3434
- run: chmod +x ${{ github.action_path }}/entrypoint.sh
3535
shell: bash

0 commit comments

Comments
 (0)