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 f8f1f09 commit 813cdc0Copy full SHA for 813cdc0
.github/workflows/releaser.yml
@@ -10,8 +10,10 @@ jobs:
10
runs-on: ubuntu-latest
11
steps:
12
- uses: actions/checkout@v3
13
+ - id: sha
14
+ run: echo "sha=${GITHUB_SHA::7}" >> $GITHUB_OUTPUT
15
- uses: softprops/action-gh-release@v1
16
with:
- tag_name: ${{ github.sha }}
- name: Release ${{ github.sha }}
17
- body: auto-generated release for commit ${{ github.sha }}
+ tag_name: ${{ steps.sha.outputs.sha }}
18
+ name: Release ${{ steps.sha.outputs.sha }}
19
+ body: auto-generated release for commit ${{ steps.sha.outputs.sha }}
0 commit comments