update go.mod to v3 and go 1.21 (#3) #11
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: Push to go package system on tag | |
on: | |
push: | |
tags: | |
- v[0-9]+.[0-9]+.[0-9]+* | |
jobs: | |
prod: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.ref_name }} | |
persist-credentials: false | |
- name: prod proxy | |
run: GOPROXY=proxy.golang.org go list -m github.com/${{ github.repository }}/v3@${{ github.ref_name }} |