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 ef6d58c commit b5297dbCopy full SHA for b5297db
.github/workflows/main.yml
@@ -29,11 +29,9 @@ jobs:
29
- run: pip install -r requirements.txt pyinstaller Pillow
30
- run: pyinstaller main.py --onefile --collect-data=grapheme --name=ncp-${{ matrix.name }}
31
- run: ./dist/ncp-${{ matrix.name }} --help
32
- - id: vars
33
- run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
34
- run: |
35
cd dist
36
- gh release create ${{ steps.vars.outputs.sha_short }} * --title "Release ${{ steps.vars.outputs.sha_short }}" --latest
+ gh release create $(git rev-parse --short HEAD) * --title "Release $(git rev-parse --short HEAD)" --latest
37
env:
38
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
39
shell: bash
0 commit comments