From ac49b00717dec788ce65533e37085538465c5112 Mon Sep 17 00:00:00 2001 From: Blake Kostner Date: Wed, 7 Feb 2024 22:22:12 -0700 Subject: [PATCH] fix: chezmoi apply source force notty --- .github/workflows/ci.yaml | 12 +++--------- 1 file changed, 3 insertions(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 78d9943..e698e44 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -22,16 +22,13 @@ jobs: steps: - name: Install (Chezmoi) - run: sudo apt update && sudo apt install -y chezmoi + run: brew install chezmoi - name: Checkout uses: actions/checkout@v4 - - name: Init - run: chezmoi init --source $(pwd) - - name: Apply - run: chezmoi apply + run: chezmoi apply --source $(pwd) --no-tty --force macOS: runs-on: macos-latest @@ -43,8 +40,5 @@ jobs: - name: Checkout uses: actions/checkout@v4 - - name: Init - run: chezmoi init --source $(pwd) - - name: Apply - run: chezmoi apply + run: chezmoi apply --source $(pwd) --no-tty --force