Skip to content

Commit ee65c84

Browse files
authored
Fix small typo in resource gallery updater workflow (#384)
* Move IssueInfo.data initialization from __post_init_post_parse__ to _get_input_() * Author affiliations parsing, use the term 'institution' * Use model_dump() instead of dict() as the latter is deprecated * Use model_dump_json() instead of dict() as the latter deprecated and json needs the former * 'institution' to 'affiliation ' changes in gallery_generator and resource_gallery * 'institution' to 'affiliation ' changes in collect-user-submission * Fix a small typo 'resurce_gallery'
1 parent 39f1dc7 commit ee65c84

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/update-resource-gallery.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ jobs:
101101
102102
with open(resource_gallery_file, 'w') as f:
103103
resource_gallery.append(data)
104-
yaml.dump(resurce_gallery, f)
104+
yaml.dump(resource_gallery, f)
105105
106106
- name: Run pre-commit hooks
107107
run: |

0 commit comments

Comments
 (0)