Skip to content

Commit

Permalink
Minor GHA changes for getting automated releases completed.
Browse files Browse the repository at this point in the history
  • Loading branch information
Red-M committed Jun 18, 2024
1 parent 3252b6e commit 3bd193e
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [windows-latest, ubuntu-latest]
os: [windows-latest, debian-latest]
mode: [release, dev]
go: ["1.22"]

Expand Down
3 changes: 2 additions & 1 deletion pkg/deej/scripts/linux/build-dev.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ go build -o deej-dev -ldflags "-X main.gitCommit=$GIT_COMMIT -X main.versionTag=
if [ $? -eq 0 ]; then
echo 'Done.'
else
echo 'Error: "go build" exited with a non-zero code. Are you running this script from the root deej directory?'
echo 'Error: "go build" exited with a non-zero code.'
exit 1
fi

2 changes: 1 addition & 1 deletion pkg/deej/scripts/linux/build-release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ go build -o deej-release -ldflags "-s -w -X main.gitCommit=$GIT_COMMIT -X main.v
if [ $? -eq 0 ]; then
echo 'Done.'
else
echo 'Error: "go build" exited with a non-zero code. Are you running this script from the root deej directory?'
echo 'Error: "go build" exited with a non-zero code.'
exit 1
fi

1 change: 1 addition & 0 deletions pkg/deej/scripts/misc/default-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,4 @@ baud_rate: 9600
# adjust the amount of signal noise reduction depending on your hardware quality
# supported values are "low" (excellent hardware), "default" (regular hardware) or "high" (bad, noisy hardware)
noise_reduction: default

0 comments on commit 3bd193e

Please sign in to comment.