Skip to content

Commit

Permalink
Fix a bug in make task
Browse files Browse the repository at this point in the history
  • Loading branch information
supercaracal committed Jan 25, 2020
1 parent 92fa8de commit 0f35fcf
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
uses: actions/create-release@v1
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
release_name: ${{ github.ref }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ cross-compile:
goxz -d dist/${latest_tag} -z -os windows,darwin,linux -arch amd64,386

upload-assets:
ghr -u ${owner} -r ${app_name} ${latest_tag} dist/${latest_tag}
ghr -u ${owner_id} -r ${app_name} ${latest_tag} dist/${latest_tag}

.PHONY: all build test lint clean cross-compile upload-assets

0 comments on commit 0f35fcf

Please sign in to comment.