This action generates an update manifest file for self distributed Firefox addons based on the releases. Recommended to be used with GitHub Pages or any other static file hoster.
Note: This action only works on public repositories, as releases on private repositories are not publicly accessible.
Required The
ID of the addon.
Can be found under the technical details section in the extension overview on
https://addons.mozilla.org. For example:
{f05c7275-f183-4f0a-87ed-e3e61fc9ae0a}
or [email protected]
.
The path to the generated update manifest file. Defaults to ./updates.json
.
GitHub token to retrieve releases with. Defaults to ${{ github.token }}
.
The repository to retrieve releases from. Defaults to
${{ github.repository }}
. For example: 2zqa/startpagina
.
A glob pattern to filter the assets by. For example: *.xpi
.
The path to the generated update manifest file. Equal to the input
output-file
.
Note: Make sure that you match only one asset with the asset-filter
input.
Otherwise the action will pick the first asset that matches the filter.
uses: 2zqa/generate-update-manifest@v1
with:
addon-id: ${{ env.ADDON_ID }}
asset-filter: '*.xpi'
This project is licensed under the MIT License.
This project welcomes contributions and suggestions. Please open an issue or create a pull request to contribute.
This project follows the Action Versioning workflow.
- How to enable and test updates for your extension: https://extensionworkshop.com/documentation/manage/updating-your-extension/
- Example addon that uses this action: https://github.com/2zqa/startpagina-private