We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b127e03 commit 6a85418Copy full SHA for 6a85418
README.md
@@ -77,6 +77,7 @@ The Action provides the following information as output:
77
| `target` | The add-on target folder. |
78
| `image` | The Image-template of the add-on. |
79
| `version` | The version of the add-on. |
80
+| `armv7` | Boolean if the add-on support the `armv7` architecture. |
81
82
## Changelog & Releases
83
action.yaml
@@ -52,6 +52,9 @@ outputs:
52
version:
53
description: Returns the version of the add-on
54
value: ${{ steps.basic.outputs.version }}
55
+ armv7:
56
+ description: Returns if the add-on supports the armv7 architecture
57
+ value: ${{ steps.architectures.outputs.armv7 }}
58
59
runs:
60
using: "composite"
0 commit comments