|
1 | 1 | # Tizen Build GitHub Action |
2 | 2 | Build and package a Tizen app. |
3 | 3 |
|
4 | | -It currently only works for Web applications (.wgt). If you want native app support, please upstream a fix :) |
| 4 | +> [!IMPORTANT] |
| 5 | +> It currently only works for Web applications (.wgt). If you want native app support, please upstream a fix :) |
5 | 6 |
|
6 | 7 | ## Usage |
7 | 8 | ### Inputs |
8 | 9 |
|
9 | 10 | Following inputs can be used as `step.with` keys |
10 | 11 |
|
11 | | -| Name | Required | Default | Type | Description | |
12 | | -|------------------------|----------|-----------------------------|--------|-----------------------------------------------------------------------------| |
13 | | -| `project-dir` | Yes | | String | Absolute path to your Tizen project. | |
14 | | -| `author-cert` | No | Tizen developer cert | String | Author certificate for signing. Base64-encoded. | |
15 | | -| `author-key` | Yes | | String | Author key used for signing. Base64-encoded. | |
16 | | -| `author-password` | Yes | | String | Password for `author-key` | |
17 | | -| `distributor-cert` | No | Tizen distributor cert | String | Distributor certificate used for signing. Base64-encoded. | |
18 | | -| `distributor-key` | No | Tizen distributor key | String | Distributor key used for signing. Base64-encoded. | |
19 | | -| `distributor-password` | No | Default for distributor key | String | Password for `distributor-key` | |
| 12 | +| Name | Required | Default | Type | Description | |
| 13 | +|------------------------|----------|-----------------------------|--------|---------------------------------------------------------------------------------| |
| 14 | +| `project-dir` | Yes | | String | Absolute path to your Tizen project. | |
| 15 | +| `author-cert` | No | Tizen developer cert | String | Author certificate for signing. Base64-encoded. | |
| 16 | +| `author-key` | Yes | | String | Author key used for signing. Base64-encoded. | |
| 17 | +| `author-password` | Yes | | String | Password for `author-key` | |
| 18 | +| `distributor-cert` | No | Tizen distributor cert | String | Distributor certificate used for signing. Base64-encoded. | |
| 19 | +| `distributor-key` | No | Tizen distributor key | String | Distributor key used for signing. Base64-encoded. | |
| 20 | +| `distributor-password` | No | Default for distributor key | String | Password for `distributor-key` | |
20 | 21 | | `privilege` | No | `public` | String | `public` or `partner`—Which distributor cert/key is used if not provided. | |
21 | 22 |
|
22 | 23 | You can encode your certificates and keys in base64 via: |
@@ -58,7 +59,7 @@ To do so, invoke the cache action **before** the build. |
58 | 59 | The important part is the `path`. |
59 | 60 | ```yaml |
60 | 61 | - name: Cache Tizen Studio installer |
61 | | - uses: actions/cache@v2 |
| 62 | + uses: actions/cache@v4 |
62 | 63 | with: |
63 | 64 | path: ${{ github.workspace }}/tizen-studio_*.bin |
64 | 65 | key: tizen-studio-installer |
|
0 commit comments