Skip to content

chore(ci): init release workflow #2

chore(ci): init release workflow

chore(ci): init release workflow #2

Workflow file for this run

name: Release
on:
release:
types: [created]
jobs:
go-test:
name: Test
uses: ./.github/workflows/test.yml@${{ github.sha }}
go-build:
name: Build
uses: ./.github/workflows/build.yml@${{ github.sha }}
go-build:

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

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 16
name: Run Go Build
runs-on: ubuntu-latest
strategy:
matrix:
go-version: [1.21.x]
steps:
- name: Download coverage output file
uses: actions/download-artifact@v3
with:
name: world-cli
- name: Publish binary to Github Release
uses: skx/github-action-publish-binaries@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
args: 'world-cli'