aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/release.yml')
-rw-r--r--.github/workflows/release.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml
index 37df665..142bb8a 100644
--- a/.github/workflows/release.yml
+++ b/.github/workflows/release.yml
@@ -123,7 +123,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
@@ -133,7 +133,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