Add gha to trigger reindex on go proxy when new tag pushed #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Trigger reindex on go proxy | |
on: | |
push: | |
tags: | |
- 'v*.*.*' # Trigger only on version tags | |
jobs: | |
index-module: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Trigger Go Proxy Indexing | |
run: curl https://sum.golang.org/lookup/github.com/${{ github.repository }}@${{ github.ref_name }} |