Skip to content

Refactored Collections #6

Refactored Collections

Refactored Collections #6

Workflow file for this run

name: Release
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
publish:
runs-on: ubuntu-latest
steps:
- name: Publish
run: go list -m github.com/${{ github.repository }}@${{ github.ref_name }}
env:
GOPROXY: https://proxy.golang.org
download:
runs-on: ubuntu-latest
needs:
- publish
steps:
- name: Go Mod Init
run: go mod init github.com/${{ github.repository }}-example
- name: Go Get
run: go get github.com/${{ github.repository }}@${{ github.ref_name }}
env:
GOPROXY: https://proxy.golang.org