Skip to content

Commit

Permalink
add action to prod the go proxy on tag
Browse files Browse the repository at this point in the history
  • Loading branch information
skandragon committed Jan 19, 2022
1 parent 6c8817c commit 0d8cf1c
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions .github/workflows/release-and-poke.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
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:
- name: prod proxy
run: GOPROXY=proxy.golang.org go list -m github.com/${{GITHUB_REPOSITORY}}@${{GITHUB_REF_NAME}}

0 comments on commit 0d8cf1c

Please sign in to comment.