Test new version of auto-update plugin

This commit is contained in:
Jack Jackson 2022-10-26 17:32:53 -07:00
parent cffc437aba
commit 20e3f69613
2 changed files with 1 additions and 5 deletions

View File

@ -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

View File

@ -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():