Skip to content

Commit

Permalink
removed unused var, added if release cond
Browse files Browse the repository at this point in the history
  • Loading branch information
supertick committed Oct 15, 2023
1 parent 23b4245 commit 6d7c264
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,6 @@ name: Java CI

on:
push:
branches:
- develop

jobs:
build:
Expand All @@ -28,13 +26,15 @@ jobs:
run: mvn --batch-mode -Dtest=!**/OpenCV* test -q

- name: Get next version
if: github.ref == 'refs/heads/develop'
uses: reecetech/[email protected]
id: version
with:
scheme: semver
increment: patch

- name: Package with Maven
if: github.ref == 'refs/heads/develop'
run: "mvn package -DskipTests -Dversion=${{ steps.version.outputs.version }} -q"

# - name: Fake Build
Expand All @@ -43,6 +43,7 @@ jobs:
# echo ${{ github.sha }} > ./target/myrobotlab.zip

- name: Release
if: github.ref == 'refs/heads/develop'
id: release
uses: softprops/action-gh-release@v1
with:
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/myrobotlab/service/InMoov2.java
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,6 @@ public static void main(String[] args) {

protected String voiceSelected;

protected boolean wasMutedBeforeBoot = false;

public InMoov2(String n, String id) {
super(n, id);
Expand Down

0 comments on commit 6d7c264

Please sign in to comment.