Skip to content

Commit 9e676df

Browse files
committed
Fix yaml
1 parent 8601f3e commit 9e676df

File tree

1 file changed

+5
-6
lines changed

1 file changed

+5
-6
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name: Create Release
33
on:
44
push:
55
tags:
6-
- 'v*'
6+
- "v*"
77

88
jobs:
99
release:
@@ -13,20 +13,19 @@ jobs:
1313
contents: write
1414
steps:
1515
- uses: actions/checkout@v4
16-
16+
1717
- name: Set up Python
1818
uses: actions/setup-python@v5
1919
with:
20-
python-version: '3.x'
21-
20+
python-version: "3.x"
21+
2222
- name: Extract changelog for tag
2323
id: extract-changelog
2424
run: ./scripts/extract_changelog_github.py "${GITHUB_REF#refs/tags/}"
25-
25+
2626
- name: Create Release
2727
uses: softprops/action-gh-release@v1
2828
with:
2929
body: ${{ steps.extract-changelog.outputs.changelog }}
3030
draft: false
3131
prerelease: false
32-

0 commit comments

Comments
 (0)