Skip to content

Commit

Permalink
Merge pull request #35 from ichiro-its/hotfix/fix_action_name
Browse files Browse the repository at this point in the history
[Hotfix] Fix Action Name
  • Loading branch information
JayantiTA authored Apr 5, 2023
2 parents bd9cb3d + 4a37ea9 commit 8ae239d
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
branches: [master]
jobs:
build-and-test-nightly:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout this repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-and-test-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]
jobs:
build-and-test-stable:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout this repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debian-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
branches: [master]
jobs:
deploy-debian-nightly:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout this repository
uses: actions/[email protected]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-debian-stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ on:
types: [created]
jobs:
deploy-debian-stable:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout this repository
uses: actions/[email protected]
Expand Down
4 changes: 3 additions & 1 deletion include/akushon/action/model/action_name.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,9 @@ class ActionName
static const char * RIGHT_KICK;
static const char * LEFT_KICK;
static const char * RIGHT_KICK_SHORT;
static const char * LEGT_KICK_SHORT;
static const char * LEFT_KICK_SHORT;
static const char * RIGHT_KICK_WIDE;
static const char * LEFT_KICK_WIDE;
static const char * LEFT_SIDEKICK;
static const char * RIGHT_SIDEKICK;
static const char * KEEPER_SIT;
Expand Down
4 changes: 3 additions & 1 deletion src/akushon/action/model/action_name.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,9 @@ const char * ActionName::RIGHTWARD_UP = "rightward_up";
const char * ActionName::RIGHT_KICK = "right_kick";
const char * ActionName::LEFT_KICK = "left_kick";
const char * ActionName::RIGHT_KICK_SHORT = "right_kick_short";
const char * ActionName::LEGT_KICK_SHORT = "left_kick_short";
const char * ActionName::LEFT_KICK_SHORT = "left_kick_short";
const char * ActionName::RIGHT_KICK_WIDE = "right_kick_wide";
const char * ActionName::LEFT_KICK_WIDE = "left_kick_wide";
const char * ActionName::LEFT_SIDEKICK = "left_sidekick";
const char * ActionName::RIGHT_SIDEKICK = "right_sidekick";
const char * ActionName::KEEPER_SIT = "keeper_sit";
Expand Down

0 comments on commit 8ae239d

Please sign in to comment.