Skip to content

Commit

Permalink
Continuous Building
Browse files Browse the repository at this point in the history
  • Loading branch information
jonathanlinat authored Jan 15, 2024
1 parent d32b09a commit a0ba2a6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/continuous-building.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
submodules: recursive
- name: Get the latest commit details
run: |
CURRENT_BRANCH_NAME=${git branch --show-current}
CURRENT_BRANCH_NAME=$(git branch --show-current)
LAST_COMMIT_AUTHOR_NAME=$(git log -1 --pretty=format:'%an')
LAST_COMMIT_EMAIL=$(git log -1 --pretty=format:'%ae')
LAST_COMMIT_LOGIN_NAME=$(curl -s "https://api.github.com/search/users?q=$LAST_COMMIT_EMAIL" | jq -r '.items[0].login')
Expand Down Expand Up @@ -147,7 +147,7 @@ jobs:
submodules: recursive
- name: Get the latest commit details
run: |
CURRENT_BRANCH_NAME=${git branch --show-current}
CURRENT_BRANCH_NAME=$(git branch --show-current)
LAST_COMMIT_AUTHOR_NAME=$(git log -1 --pretty=format:'%an')
LAST_COMMIT_EMAIL=$(git log -1 --pretty=format:'%ae')
LAST_COMMIT_LOGIN_NAME=$(curl -s "https://api.github.com/search/users?q=$LAST_COMMIT_EMAIL" | jq -r '.items[0].login')
Expand Down Expand Up @@ -285,7 +285,7 @@ jobs:
submodules: recursive
- name: Get the latest commit details
run: |
CURRENT_BRANCH_NAME=${git branch --show-current}
CURRENT_BRANCH_NAME=$(git branch --show-current)
LAST_COMMIT_AUTHOR_NAME=$(git log -1 --pretty=format:'%an')
LAST_COMMIT_EMAIL=$(git log -1 --pretty=format:'%ae')
LAST_COMMIT_LOGIN_NAME=$(curl -s "https://api.github.com/search/users?q=$LAST_COMMIT_EMAIL" | jq -r '.items[0].login')
Expand Down Expand Up @@ -411,7 +411,7 @@ jobs:
submodules: recursive
- name: Get the latest commit details
run: |
CURRENT_BRANCH_NAME=${git branch --show-current}
CURRENT_BRANCH_NAME=$(git branch --show-current)
LAST_COMMIT_AUTHOR_NAME=$(git log -1 --pretty=format:'%an')
LAST_COMMIT_EMAIL=$(git log -1 --pretty=format:'%ae')
LAST_COMMIT_LOGIN_NAME=$(curl -s "https://api.github.com/search/users?q=$LAST_COMMIT_EMAIL" | jq -r '.items[0].login')
Expand Down

0 comments on commit a0ba2a6

Please sign in to comment.