Skip to content

Commit 5ad9bed

Browse files
committed
chore: Fix binary releases
1 parent f6f4568 commit 5ad9bed

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

.github/workflows/post-release.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ on:
1919
tags:
2020
- "v*"
2121
env:
22-
CRATE_NAME: git-stack
22+
CRATE_NAME: git-fixture
2323
jobs:
2424
create-release:
2525
name: create-release
@@ -101,14 +101,12 @@ jobs:
101101
cp {README.md,LICENSE-*} "$staging/"
102102
cp {CHANGELOG.md,docs/*} "$staging/doc/"
103103
if [ "${{ matrix.os }}" = "windows-2019" ]; then
104-
cp "target/${{ matrix.target }}/release/git-stack.exe" "$staging/"
105-
cp "target/${{ matrix.target }}/release/git-branch-stash.exe" "$staging/"
104+
cp "target/${{ matrix.target }}/release/git-fixture.exe" "$staging/"
106105
cd "$staging"
107106
7z a "../$staging.zip" .
108107
echo "ASSET=$staging.zip" >> $GITHUB_ENV
109108
else
110-
cp "target/${{ matrix.target }}/release/git-stack" "$staging/"
111-
cp "target/${{ matrix.target }}/release/git-branch-stash" "$staging/"
109+
cp "target/${{ matrix.target }}/release/git-fixture" "$staging/"
112110
tar czf "$staging.tar.gz" -C "$staging" .
113111
echo "ASSET=$staging.tar.gz" >> $GITHUB_ENV
114112
fi

0 commit comments

Comments
 (0)