Skip to content

Commit

Permalink
update release yaml for new folder structure
Browse files Browse the repository at this point in the history
  • Loading branch information
2start committed Jan 16, 2024
1 parent 0e01e00 commit 46f5ba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Build binary
run: |
BINARY_NAME="gptprep-${{ matrix.goos }}-${{ matrix.goarch }}"
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w" -o "${BINARY_NAME}"
env GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -ldflags="-s -w" -o "${BINARY_NAME}" ./cmd
- name: Archive binary
uses: actions/upload-artifact@v3
Expand Down
2 changes: 1 addition & 1 deletion Taskfile.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,5 @@ tasks:
release:
desc: Tag the new version and push it to GitHub
cmds:
- git tag -a "{{.VERSION}}" -m "Release VERSION {{.VERSION}} of {{.APP_NAME}}"
- git tag -a "{{.VERSION}}" -m "Release version {{.VERSION}} of {{.APP_NAME}}"
- git push origin "{{.VERSION}}"

0 comments on commit 46f5ba5

Please sign in to comment.