fix: remove invalid workflow file causing CI error#125
Closed
fix: remove invalid workflow file causing CI error#125
Conversation
GitHub Actions validates all YAML files in .github/workflows/ as complete workflows. build-setup.yml is a cargo-dist build setup file containing only build steps (starting with '- name:'), not a complete workflow. Moving it to .github/build-setup.yml prevents GitHub from treating it as a standalone workflow while keeping it available for cargo-dist to embed into the generated release.yml workflow.
909c7e1 to
9a99210
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
fix: remove invalid workflow file causing CI error
build-setup.yml was a YAML snippet starting with a sequence, not a valid
GitHub Actions workflow. GitHub Actions validates all files in .github/workflows/
as complete workflows, causing the error:
'A sequence was not expected'
The file was intended as a reusable snippet but GitHub doesn't support this.
The setup steps are already inlined in ci.yaml and release.yml.