Skip to content

Commit 43711bf

Browse files
committed
Fix incorrect pattern matching
1 parent a460e27 commit 43711bf

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/CI.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ jobs:
191191
- name: Normalize file names for continuous delivery
192192
if: ${{ github.event_name == 'push' }}
193193
run: |
194-
for output in fpm-*/fpm-*; do
194+
for output in fpm-*/fpm*; do
195195
pushd $(dirname "$output")
196196
mv -v $(basename $output) $(basename $output | sed -E '${{ env.replace }}')
197197
popd
@@ -201,7 +201,7 @@ jobs:
201201

202202
- name: Create SHA256 checksums
203203
run: |
204-
for output in fpm-*/fpm-*; do
204+
for output in fpm-*/fpm*; do
205205
pushd $(dirname "$output")
206206
sha256sum $(basename "$output") | tee $(basename "$output").sha256
207207
popd

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ jobs:
123123
- name: Normalize file names for continuous delivery
124124
if: ${{ github.event_name == 'push' }}
125125
run: |
126-
for output in fpm-*/fpm-*; do
126+
for output in fpm-*/fpm*; do
127127
pushd $(dirname "$output")
128128
mv -v $(basename $output) $(basename $output | sed -E '${{ env.replace }}')
129129
popd
@@ -133,7 +133,7 @@ jobs:
133133

134134
- name: Create SHA256 checksums
135135
run: |
136-
for output in fpm-*/fpm-*; do
136+
for output in fpm-*/fpm*; do
137137
pushd $(dirname "$output")
138138
sha256sum $(basename "$output") | tee $(basename "$output").sha256
139139
popd

0 commit comments

Comments
 (0)