Skip to content

Commit

Permalink
Fix data structure of "Render Registry" workflow
Browse files Browse the repository at this point in the history
An invalid data structure of "Render Registry" GitHub Actions workflow caused a spurious failure of the workflow runs:

> Invalid workflow file: .github/workflows/render-registry.yml#L2
> You have an error in your yaml syntax on line 2

In this usage, both the `on` and `push` keys must be mappings (AKA objects).
  • Loading branch information
per1234 committed Jul 13, 2023
1 parent 3451155 commit 1e84ebd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/render-registry.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Render Registry
on:
- push
branches:
- main
push:
branches:
- main
jobs:
render:
runs-on: ubuntu-latest
Expand Down

0 comments on commit 1e84ebd

Please sign in to comment.