Skip to content

Fix missing build command in release workflow#17

Merged
tayyebi merged 3 commits intomainfrom
copilot/fix-invalid-workflow-file
Jan 26, 2026
Merged

Fix missing build command in release workflow#17
tayyebi merged 3 commits intomainfrom
copilot/fix-invalid-workflow-file

Conversation

Copy link
Copy Markdown
Contributor

Copilot AI commented Jan 26, 2026

The "Build release binary" step at line 129 had no run, uses, or other executable property, causing workflow validation to fail.

Added conditional build command:

- name: Build release binary
  run: |
    if [ "${{ matrix.use_cross }}" = "true" ]; then
      cross build --release --target ${{ matrix.target }}
    else
      cargo build --release --target ${{ matrix.target }}
    fi
  shell: bash

The command uses cross for ARM64 cross-compilation targets and cargo for native builds.

Original prompt

This section details on the original issue you should resolve

<issue_title>Invalid workflow file (Line: 129, Col: 9)</issue_title>
<issue_description>GitHub Actions / .github/workflows/release.yml

Invalid workflow file

(Line: 129, Col: 9): There's not enough info to determine what you meant. Add one of these properties: run, shell, uses, with, working-directory

</issue_description>

Comments on the Issue (you are @copilot in this section)


✨ Let Copilot coding agent set things up for you — coding agent works faster and does higher quality work when set up for your repo.

Copilot AI and others added 2 commits January 26, 2026 14:10
Co-authored-by: tayyebi <14053493+tayyebi@users.noreply.github.com>
Co-authored-by: tayyebi <14053493+tayyebi@users.noreply.github.com>
Copilot AI changed the title [WIP] Fix invalid workflow file in GitHub Actions Fix missing build command in release workflow Jan 26, 2026
Copilot AI requested a review from tayyebi January 26, 2026 14:12
@tayyebi tayyebi marked this pull request as ready for review January 26, 2026 14:17
@tayyebi tayyebi merged commit a8c8a81 into main Jan 26, 2026
@tayyebi tayyebi deleted the copilot/fix-invalid-workflow-file branch February 25, 2026 15:54
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

Invalid workflow file (Line: 129, Col: 9)

2 participants