Skip to content

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
go-test:
name: Test
uses: ./.github/workflows/test.yml

Check failure on line 10 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

error parsing called workflow ".github/workflows/release.yml" -> "./.github/workflows/test.yml" (source tag with sha:4e148ff9bb3ea38bad80dde2339b9a2eed0128b6) : workflow is not reusable as it is missing a `on.workflow_call` trigger
go-build:
name: Build
uses: ./.github/workflows/build.yml
release:
name: Release world-cli binary
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.21.x]
steps:
- name: Download world-cli build binary
uses: actions/download-artifact@v3
with:
name: world-cli
- name: Publish world-cli binary to corresponding Github Release
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'world-cli'