# drone-web-verify **Repository Path**: liwen_test_sync_group/drone-web-verify ## Basic Information - **Project Name**: drone-web-verify - **Description**: Drone plugin to verify web deployments - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-12-11 - **Last Updated**: 2025-07-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # drone-web-verify [![Build Status](https://cloud.drone.io/api/badges/viant/drone-web-verify/status.svg)](https://cloud.drone.io/viant/drone-web-verify) [![License: GPL v3](https://img.shields.io/badge/License-GPLv3-blue.svg)](https://github.com/viant/drone-web-verify/blob/master/LICENSE) Drone plugin to verify web deployments ## Setup Create a `drone_build_version.html` file during the deploy process. Example: ```bash echo "$DRONE_BUILD_NUMBER" > www/drone_build_version.html" ``` ## Usage The following parameter is required: * `url` The base url for the `drone_build_version.html` Optional: * `timeout` Timeout value. Default is 10m. * `version_file_path` Path to the `drone_build_version.html` file. Defaults to working directory. * `debug` If set to `True` then it will print the results of the website query. ## Example ```yaml kind: pipeline name: default steps: - name: verify image: viant/drone-web-verify settings: url: https://www.mywebsite.com ```