Skip to content

Commit

Permalink
frontend-CI: fix indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
defgsus committed Nov 13, 2023
1 parent 260c73f commit 2aabc0e
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions .github/workflows/build-frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,12 @@ jobs:
curl -s -u ${GITHUB_ACTOR}:${{ secrets.GITHUB_TOKEN }} https://api.github.com/users/${GITHUB_ACTOR} > ${GITHUB_ACTOR}.json
git config user.email "$(cat ${GITHUB_ACTOR}.json | jq -r .email)"
git config user.name "frontend-bot"
- name: commit changes
run: |
git add -f bad/static/brain*
git add -f bad/static/index*
git status
git commit -m"build frontend"
- name: push changes
run: |
git push -u origin ${GITHUB_HEAD_REF}-frontend || (git pull --rebase --no-edit && git push -u origin ${GITHUB_HEAD_REF}-frontend)
- name: commit changes
run: |
git add -f bad/static/brain*
git add -f bad/static/index*
git status
git commit -m"build frontend"
- name: push changes
run: |
git push -u origin ${GITHUB_HEAD_REF}-frontend || (git pull --rebase --no-edit && git push -u origin ${GITHUB_HEAD_REF}-frontend)

0 comments on commit 2aabc0e

Please sign in to comment.