From 097833f96a68fad8d7fd0e62e14baccce7f80169 Mon Sep 17 00:00:00 2001 From: abs3nt Date: Thu, 19 Jan 2023 22:09:47 -0800 Subject: [PATCH] wp --- .woodpecker.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .woodpecker.yml diff --git a/.woodpecker.yml b/.woodpecker.yml new file mode 100644 index 0000000..a59ee0c --- /dev/null +++ b/.woodpecker.yml @@ -0,0 +1,24 @@ +pipeline: + build: + image: golang:1.19 + commands: + - go build -o gospt + - ./gospt completion zsh > gospt_zsh + - ./gospt completion bash > gospt_bash + - ./gospt completion fish > gospt_fish + + publish: + image: woodpeckerci/plugin-gitea-release + settings: + base_url: https://gitea.asdf.cafe + files: + - gospt + - gospt_zsh + - gospt_bash + - gospt_fish + api_key: + from_secret: GITEA_KEY + checksum: sha256 + +when: + event: tag