We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6040d12 commit 5e5c477Copy full SHA for 5e5c477
.github/workflows/release.yaml
@@ -48,7 +48,7 @@ jobs:
48
name: Update changelog
49
runs-on: ubuntu-latest
50
outputs:
51
- changelog_commitish: ${{ steps.commit.outputs.commit_long_sha || github.sha }}
+ changelog_commitish: ${{ steps.get_sha.outputs.commit_sha }}
52
53
steps:
54
- name: Checkout repository
@@ -82,6 +82,10 @@ jobs:
82
author_email: [email protected]
83
message: "chore(release): Update changelog, package.json and manifest.json versions [skip ci]"
84
85
+ - name: Get commit SHA
86
+ id: get_sha
87
+ run: echo "commit_sha=$(git rev-parse HEAD)" >> $GITHUB_OUTPUT
88
+
89
create_github_release:
90
name: Create github release
91
needs: [release_metadata, update_changelog]
0 commit comments