Skip to content

Commit 759d390

Browse files
authored
ci: fixes typo in the flake update workflow (#255)
1 parent 3523fb9 commit 759d390

1 file changed

Lines changed: 4 additions & 10 deletions

File tree

.github/workflows/update-flake.yml

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,19 +17,13 @@ jobs:
1717
- name: Update flake.lock
1818
run: nix flake update
1919

20-
- name: Commit changes
21-
run: |
22-
23-
- name: Configure Git
24-
run: |
25-
git config user.name "github-actions[bot]"
26-
git config user.email "github-actions[bot]@users.noreply.github.com"
27-
28-
- name: Push changes
20+
- name: Commit and push changes
2921
env:
3022
GH_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}
3123
run: |
32-
git diff --quiet flake.lock && exit 0`
24+
git diff --quiet flake.lock && exit 0
25+
git config user.name "github-actions[bot]"
26+
git config user.email "github-actions[bot]@users.noreply.github.com"
3327
git add .
3428
git commit -m "chore: update flake.lock (#228)"
3529
git remote set-url origin https://x-access-token:${GH_TOKEN}@github.com/${{ github.repository }}.git

0 commit comments

Comments
 (0)