Skip to content

Commit 8ee6942

Browse files
authored
fix: ensure checking from ./bin instead of ./build (#4)
1 parent 16cee0a commit 8ee6942

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release-please.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
go-version: ${{ matrix.go }}
3939

4040
# Build artifacts for multiple platforms.
41-
- name: Build nvs artifacts
41+
- name: Build govim artifacts
4242
if: ${{ steps.release.outputs.release_created }}
4343
run: |
4444
mkdir -p bin
@@ -52,8 +52,8 @@ jobs:
5252
- name: Generate Checksums
5353
if: ${{ steps.release.outputs.release_created }}
5454
run: |
55-
cd build
56-
for file in nvs-*; do
55+
cd bin
56+
for file in govim-*; do
5757
shasum -a 256 "$file" | awk '{print $1}' > "$file.sha256"
5858
done
5959
ls -l
@@ -64,7 +64,7 @@ jobs:
6464
env:
6565
GITHUB_TOKEN: ${{ secrets.MY_RELEASE_PLEASE_TOKEN }}
6666
run: |
67-
for file in build/nvs-*; do
67+
for file in bin/govim-*; do
6868
if [[ "$file" != *.sha256 ]]; then
6969
gh release upload "${{ steps.release.outputs.tag_name }}" "$file"
7070
gh release upload "${{ steps.release.outputs.tag_name }}" "$file.sha256"

0 commit comments

Comments
 (0)