Skip to content

chore(ci): fix release name & desc #3

chore(ci): fix release name & desc

chore(ci): fix release name & desc #3

Workflow file for this run

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

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

invalid value workflow reference: cannot specify version when calling local workflows
go-build:
name: Build
uses: ./.github/workflows/build.yml@${{ github.sha }}
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'