Skip to content

Commit

Permalink
chroe: fix the get commits workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
XuNeal committed Mar 30, 2023
1 parent d61e0e4 commit d74faef
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-release-android.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ jobs:

- name: Get commits
id: getcommits
run: echo "commits=$(git log -5 --pretty=%B)" >> $GITHUB_OUTPUT
run: echo "commits=$(git log -n 5 --pretty=format:"%s")" >> $GITHUB_OUTPUT

- name: Publish
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/build-release-ios.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:

- name: Get commits
id: getcommits
run: echo "commits=$(git log -5 --pretty=%B)" >> $GITHUB_OUTPUT
run: echo "commits=$(git log -n 5 --pretty=format:"%s")" >> $GITHUB_OUTPUT


- name: Build And Publish
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integrate-fe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:

- name: Get commits
id: getcommits
run: echo "commits=$(git log -5 --pretty=%B)" >> $GITHUB_OUTPUT
run: echo "commits=$(git log -n 5 --pretty=format:"%s")" >> $GITHUB_OUTPUT


- name: Build And Publish
Expand Down

0 comments on commit d74faef

Please sign in to comment.