From 71f9ce10c4d0ebc0d5aec5a2bf46b1c508409338 Mon Sep 17 00:00:00 2001 From: Jeff Halter <868228+jhalter@users.noreply.github.com> Date: Sun, 14 Jul 2024 11:14:59 -0700 Subject: Create go-proxy-warming Add go doc proxy marking workflow: https://github.com/marketplace/actions/go-proxy-warming --- .github/workflows/go-proxy-warming | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/go-proxy-warming (limited to '.github/workflows') diff --git a/.github/workflows/go-proxy-warming b/.github/workflows/go-proxy-warming new file mode 100644 index 0000000..fcdeaa1 --- /dev/null +++ b/.github/workflows/go-proxy-warming @@ -0,0 +1,15 @@ +on: + release: + types: + - created + tags: + - 'v[0-9]+.[0-9]+.[0-9]+' + - '**/v[0-9]+.[0-9]+.[0-9]+' + +jobs: + build: + name: Renew documentation + runs-on: ubuntu-latest + steps: + - name: Pull new module version + uses: andrewslotin/go-proxy-pull-action@master -- cgit