Skip to content

Commit 6a85418

Browse files
authored
Add missing armv7 output flag (#18)
1 parent b127e03 commit 6a85418

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,7 @@ The Action provides the following information as output:
7777
| `target` | The add-on target folder. |
7878
| `image` | The Image-template of the add-on. |
7979
| `version` | The version of the add-on. |
80+
| `armv7` | Boolean if the add-on support the `armv7` architecture. |
8081

8182
## Changelog & Releases
8283

action.yaml

+3
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,9 @@ outputs:
5252
version:
5353
description: Returns the version of the add-on
5454
value: ${{ steps.basic.outputs.version }}
55+
armv7:
56+
description: Returns if the add-on supports the armv7 architecture
57+
value: ${{ steps.architectures.outputs.armv7 }}
5558

5659
runs:
5760
using: "composite"

0 commit comments

Comments
 (0)