Skip to content

Commit

Permalink
chore(ci): fix windows artefact name.
Browse files Browse the repository at this point in the history
  • Loading branch information
Zenithar committed Feb 27, 2022
1 parent c23972e commit 3ce08c6
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release with goreleaser
name: Release

on:
workflow_dispatch:
Expand Down Expand Up @@ -130,8 +130,9 @@ jobs:
continue
;;
harp-*)
tar czvf $f.tar.gz $f $f.sbom.json
rm -f $f $f.sbom.json
fn=$(basename -s ".exe" $f)
tar czf ${fn}.tar.gz $f ${fn}.sbom.json
rm -f $f ${fn}.sbom.json
;;
esac
done
Expand Down

0 comments on commit 3ce08c6

Please sign in to comment.