Skip to content

Commit d8b57c4

Browse files
committed
ci: Fixes
1 parent 29b688f commit d8b57c4

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/publish.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
git config user.email github-actions@github.com
4040
4141
- name: ReleaseIt
42-
run: npm run release -- ${{ inputs.bump_type }}
42+
run: npm run release -- ${{inputs.bump_type}}
4343

4444
release:
4545
name: Publish
@@ -61,12 +61,12 @@ jobs:
6161
run: npm ci
6262

6363
- name: Build Changelog
64-
id: github_release_build
64+
id: build_changelog
6565
uses: mikepenz/release-changelog-builder-action@v2.4.3
6666
with:
6767
configuration: "./.github/workflows/changelog-config.json"
6868
env:
69-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
69+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
7070

7171
- name: Read version
7272
id: app_version
@@ -79,8 +79,8 @@ jobs:
7979
- name: Create GitHub Release
8080
uses: softprops/action-gh-release@v1
8181
with:
82-
tag_name: v${{ steps.app_version.outputs.VERSION }}
83-
release_name: v${{ steps.app_version.outputs.VERSION }}
84-
body: ${{ steps.github_release_build.outputs.changelog }}
82+
tag_name: v${{steps.app_version.outputs.VERSION}}
83+
name: v${{steps.app_version.outputs.VERSION}}
84+
body: ${{steps.build_changelog.outputs.changelog}}
8585
env:
86-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
86+
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}

0 commit comments

Comments
 (0)