diff options
Diffstat (limited to '.github/workflows/CI.yml')
-rw-r--r-- | .github/workflows/CI.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index bc36835..f6574b0 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -191,7 +191,7 @@ jobs: - name: Normalize file names for continuous delivery if: ${{ github.event_name == 'push' }} run: | - for output in fpm-*/fpm-*; do + for output in fpm-*/fpm*; do pushd $(dirname "$output") mv -v $(basename $output) $(basename $output | sed -E '${{ env.replace }}') popd @@ -201,7 +201,7 @@ jobs: - name: Create SHA256 checksums run: | - for output in fpm-*/fpm-*; do + for output in fpm-*/fpm*; do pushd $(dirname "$output") sha256sum $(basename "$output") | tee $(basename "$output").sha256 popd |