Skip to content

Commit

Permalink
release workflow: fix build target
Browse files Browse the repository at this point in the history
  • Loading branch information
koron committed Sep 10, 2024
1 parent ed234b2 commit cb1c576
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,14 +71,14 @@ jobs:
- name: Build
shell: bash
run: |
go build
go build ./cmd/xlsx4db
- name: Archive
shell: bash
run: |
rm -rf _build/${PKGNAME}
mkdir -p _build/${PKGNAME}
cp -p ${NAME} _build/${PKGNAME}
cp -p ./cmd/xlsx4db/${NAME} _build/${PKGNAME}
cp -p LICENSE _build/${PKGNAME}
cp -p README.md _build/${PKGNAME}
Expand Down

0 comments on commit cb1c576

Please sign in to comment.