mirror of
https://github.com/jrnl-org/jrnl.git
synced 2025-05-17 11:38:32 +02:00
use find instead of ls to better handle non-alphanumberic filenames
This commit is contained in:
parent
8e7845b3c3
commit
431904b0fc
1 changed files with 1 additions and 1 deletions
2
.github/workflows/release.yaml
vendored
2
.github/workflows/release.yaml
vendored
|
@ -106,7 +106,7 @@ jobs:
|
||||||
- name: Get PyPI version
|
- name: Get PyPI version
|
||||||
id: pypi-version-getter
|
id: pypi-version-getter
|
||||||
run: |
|
run: |
|
||||||
pypi_version="$(ls dist/jrnl-*.tar.gz | sed -r 's!dist/jrnl-(.*)\.tar\.gz!\1!')"
|
pypi_version="$(find dist/jrnl-*.tar.gz | sed -r 's!dist/jrnl-(.*)\.tar\.gz!\1!')"
|
||||||
echo "::set-output name=pypi_version::$pypi_version"
|
echo "::set-output name=pypi_version::$pypi_version"
|
||||||
|
|
||||||
release_homebrew:
|
release_homebrew:
|
||||||
|
|
Loading…
Add table
Reference in a new issue