Skip to content

Commit

Permalink
chore: change name of application files
Browse files Browse the repository at this point in the history
changed name of application files to better reflect their purpose
  • Loading branch information
lyledouglass committed Dec 31, 2023
1 parent 2dee8ca commit c565a4c
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
18 changes: 9 additions & 9 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,11 @@ jobs:

- name: Build for Windows (amd64)
run: |
cd cmd/client && env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_client.exe
cd ../server && env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_server.exe
cd cmd/cli && env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_cli.exe
cd ../watcher && env GOOS=windows GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_watcher.exe
- name: Build for Linux (amd64)
run: cd cmd/server && env GOOS=linux GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_server
run: cd cmd/watcher && env GOOS=linux GOARCH=amd64 go build -o /home/runner/work/wowtools/wowtools/build/wowtools_watcher

# Go Tests are acting up due to the W32 module - I've disabled all the tests but it still spits errors out. Disabling for now as these are all local tests anyways
#- name: Test
Expand All @@ -43,9 +43,9 @@ jobs:
with:
name: WoWTools-AMD64
path: |
build/wowtools_client.exe
build/wowtools_server.exe
build/wowtools_server
build/wowtools_cli.exe
build/wowtools_watcher.exe
build/wowtools_watcher
LICENSE
README.md
config.yaml
Expand All @@ -68,7 +68,7 @@ jobs:
files: |
LICENSE
README.md
build/wowtools_client.exe
build/wowtools_server.exe
build/wowtools_server
build/wowtools_cli.exe
build/wowtools_watcher.exe
build/wowtools_watcher
config.yaml
4 changes: 2 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
/local_tests/

# Configs in cmd folder
/cmd/client/config.yaml
/cmd/server/config.yaml
/cmd/cli/config.yaml
/cmd/watcher/config.yaml

# Linux binary
wowtools_server
Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit c565a4c

Please sign in to comment.