mirror of
https://github.com/certbot/certbot.git
synced 2026-08-01 19:02:52 +02:00
20 lines
518 B
YAML
20 lines
518 B
YAML
# Release pipeline to run our full test suite, build artifacts, and deploy them
|
|
# for GitHub release tags.
|
|
trigger:
|
|
tags:
|
|
include:
|
|
- v*
|
|
pr: none
|
|
|
|
variables:
|
|
dockerTag: ${{variables['Build.SourceBranchName']}}
|
|
snapBuildTimeout: 19800
|
|
|
|
stages:
|
|
- template: templates/stages/test-and-package-stage.yml
|
|
- template: templates/stages/changelog-stage.yml
|
|
- template: templates/stages/deploy-stage.yml
|
|
parameters:
|
|
snapReleaseChannel: beta
|
|
- template: templates/stages/notify-failure-stage.yml
|