Skip to content

Commit

Permalink
fix: chezmoi init current dir after checkout
Browse files Browse the repository at this point in the history
  • Loading branch information
btkostner committed Feb 8, 2024
1 parent 5596bf4 commit 6512b1b
Showing 1 changed file with 9 additions and 3 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,13 +22,16 @@ jobs:

steps:
- name: Install (Chezmoi)
run: apt install chezmoi
run: sudo apt update && sudo apt install -y chezmoi

- name: Checkout
uses: actions/checkout@v4

- name: Init
run: chezmoi init --source $(pwd)

- name: Apply
run: chezmoi apply .
run: chezmoi apply

macOS:
runs-on: macos-latest
Expand All @@ -40,5 +43,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4

- name: Init
run: chezmoi init --source $(pwd)

- name: Apply
run: chezmoi apply .
run: chezmoi apply

0 comments on commit 6512b1b

Please sign in to comment.