Skip to content

Commit

Permalink
gh and vscode: rename binary
Browse files Browse the repository at this point in the history
With Python removed, the "-go" prepended to the app name becomes
annoying and irrelevant.

Signed-off-by: Leonardo Graboski Veiga <[email protected]>
  • Loading branch information
leograba committed Apr 10, 2024
1 parent 5509275 commit 7e7956c
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:

jobs:
build-go:
name: Build Go App
name: Build App
runs-on: ubuntu-latest
steps:
- name: Checkout repository
Expand All @@ -26,11 +26,11 @@ jobs:
with:
go-version: '>=1.18.1'

- name: Build Go app
run: go build -o dist/sugar-go sugar.go
- name: Build app
run: go build -o dist/sugar sugar.go

- name: Bundle Go app
- name: Bundle app
uses: actions/upload-artifact@v4
with:
name: sugar-go
path: dist/sugar-go
name: sugar
path: dist/sugar
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"args": [
"build",
"-o",
"dist/sugar-go",
"dist/sugar",
"sugar.go"
],
"group": {
Expand Down

0 comments on commit 7e7956c

Please sign in to comment.