Skip to content

Commit

Permalink
git ignore & build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
adamewozniak committed Jan 18, 2024
1 parent 47892fb commit 866f23e
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 2 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,9 +30,8 @@ jobs:
- name: Compile
run: |
go mod download
cd cmd
go build .
- uses: actions/upload-artifact@v3
with:
name: ethereum-api ${{ matrix.targetos }} ${{ matrix.arch }}
path: cmd/ethereum-api
path: ethereum-api
24 changes: 24 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,26 @@
# Binaries for programs and plugins
*.exe
*.exe~
*.dll
*.so
*.dylib

# Test binary, built with `go test -c`
*.test

# Output of the go coverage tool, specifically when used with LiteIDE
*.out

# Dependency directories (remove the comment below to include it)
# vendor/

# OSX
*.DS_Store

# build
main
build/

config.yaml

.netrc

0 comments on commit 866f23e

Please sign in to comment.