This action creates job summary for build with Zephyr plugin
.
Required UID of application. pattern {application}.{repository}.{organization}
.
The link where snapshot of build is deployed.
To build app with zephyr-plugin
you will need generate User Auth Token
in Zephyr portal here and store it to GitHub action secrets.
jobs:
build_app:
runs-on: ubuntu-latest
name: Build
steps:
- name: Checkout
uses: actions/checkout@v4
- name: install dependencies
run: npm ci
- name: Build App
env:
ZE_SECRET_TOKEN: ${{ secrets.ZE_SECRET_TOKEN }} # Required Your User Auth Token
run: "<build command here>"
- name: Zephyr deploy summary
uses: ZephyrCloudIO/deploy-summary-action@v1
id: zephyr-summary
with:
application_uid: <your_application_uid>
- name: Zephyr deploy summary
run: echo "Deployed to ${{ steps.zephyr.outputs.version_url }}"
Name | Required | Description |
---|---|---|
application_uid |
true | The link where snapshot of build is deployed. |
Name | Description |
---|---|
version_url |
The link where snapshot of build is deployed. |