Skip to content

Generated release version #22

Generated release version

Generated release version #22

Workflow file for this run

name: Publishing
on: [push]
jobs:
test:
uses: ./.github/workflows/test.yml

Check failure on line 7 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/publish.yml

Invalid workflow file

error parsing called workflow ".github/workflows/publish.yml" -> "./.github/workflows/test.yml" (source branch with sha:c6d664b7950584f4e33595010ce7f1704601cb83) : workflow is not reusable as it is missing a `on.workflow_call` trigger
publish:
name: Publish the client to the public registry
needs: [test]
runs-on: ubuntu-22.04
env:
VERSION: ${{ github.ref_name }}
strategy:
matrix:
go: [ '17' ]
steps:
- uses: actions/checkout@v2
- name: Setup Go ${{ matrix.go-version }}
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Install dependencies
run: go get .
- name: Publish
run: |
go mod tidy
GOPROXY=proxy.golang.org go list -m github.com/manticoresoftware/[email protected]