Skip to content

Fixing YML

Fixing YML #2

Workflow file for this run

name: test-release-action
on:
workflow_dispatch:
inputs:
version:
description: 'Release version'
required: true
type: string
jobs:
create-release:
runs-on: windows-latest
steps:
- name: Check out repository
uses: actions/checkout@v4
      - name: Create artifacts directory
        run: mkdir bin
      - name: Copy scripts
        run: xcopy /s src bin
- name: Publish release

Check failure on line 24 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 24
run: gh release create v${{ inputs.version }} --title "Release v${{ inputs.version }}" bin