diff options
| -rw-r--r-- | .github/workflows/go-proxy-warming | 15 |
1 files changed, 15 insertions, 0 deletions
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 |