From 4c4ff0845b06030cd0fa2348677af1acd59e1f9b Mon Sep 17 00:00:00 2001 From: simon Date: Fri, 20 May 2022 19:35:17 +0700 Subject: [PATCH] auto save release tag --- tubearchivist/web/src/webhook_github.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tubearchivist/web/src/webhook_github.py b/tubearchivist/web/src/webhook_github.py index 1307b96..eabfdc9 100644 --- a/tubearchivist/web/src/webhook_github.py +++ b/tubearchivist/web/src/webhook_github.py @@ -101,6 +101,7 @@ class GithubHook(WebhookBase): tag_name = self.hook["release"]["tag_name"] task = TaskHandler(self.repo_conf, tag_name=tag_name) task.create_task("build_release") + GithubBackup(tag_name).save_tag() class GithubBackup: