From 20e3f696130d9ec989bd43f220db9356a039be7f Mon Sep 17 00:00:00 2001 From: Jack Jackson Date: Wed, 26 Oct 2022 17:32:53 -0700 Subject: [PATCH] Test new version of auto-update plugin --- .drone.yml | 4 ---- script.py | 2 +- 2 files changed, 1 insertion(+), 5 deletions(-) diff --git a/.drone.yml b/.drone.yml index f8827cf..9d5de1a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -19,13 +19,9 @@ steps: - name: auto-update-infra-repo image: gitea.scubbo.org/scubbo/auto-repo-update-drone-plugin:latest settings: - branch: main git_repo: https://gitea.scubbo.org/scubbo/auto-update-test-infra-code image_tag: ${DRONE_COMMIT_SHA:0:10} destination_file: helm/deployed-images/prod - author_email: scubbojj@gmail.com - author_name: Jack Jackson - commit_message: "[Auto] Update Prod to ${DRONE_COMMIT_SHA:0:10}" access_token: from_secret: gitea_pat diff --git a/script.py b/script.py index 16bc983..6249186 100644 --- a/script.py +++ b/script.py @@ -10,7 +10,7 @@ class HelloWorldRequestHandler(http.server.BaseHTTPRequestHandler): self.send_header('X-Clacks-Overhead', 'GNU Terry Pratchett') self.end_headers() - self.wfile.write(bytes('Hello universe!', 'utf8')) + self.wfile.write(bytes('Hello multiverse!', 'utf8')) def main():