Skip to content

ZephyrCloudIO/deploy-summary-action

Use this GitHub action with your project
Add this Action to an existing workflow or create a new one
View on Marketplace

Repository files navigation

Zephyr deployment summary

This action creates job summary for build with Zephyr plugin.

Inputs

application_uid

Required UID of application. pattern {application}.{repository}.{organization}.

Outputs

version_url

The link where snapshot of build is deployed.

Usage

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 }}"

Inputs

Name Required Description
application_uid true The link where snapshot of build is deployed.

Outputs

Name Description
version_url The link where snapshot of build is deployed.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages