mirror of
https://github.com/certbot/certbot.git
synced 2026-06-08 00:02:14 -04:00
* add packages to git commit * rename deploy stage * rename deploy jobs * set up github releases * remove v * tweak release script * remove publishing windows installer * update changelog
17 lines
479 B
YAML
17 lines
479 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/release-deploy-stage.yml
|
|
- template: templates/stages/notify-failure-stage.yml
|