We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 13c51b1 commit 8f2919eCopy full SHA for 8f2919e
.github/workflows/test-install.yml
@@ -5,6 +5,10 @@ on:
5
branches:
6
- main
7
8
+env:
9
+ BIN_PATH: ${{ github.workspace }}/bin
10
+ INIT_ARGS: --depth 1 --exclude=encrypted --exclude=externals --exclude=scripts --promptDefaults
11
+
12
jobs:
13
test:
14
strategy:
@@ -19,6 +23,6 @@ jobs:
19
23
steps:
20
24
- name: Install chezmoi
21
25
shell: bash
22
- run: bash <(curl -fsLS get.chezmoi.io)
26
+ run: bash <(curl -fsLS get.chezmoi.io) -b ${{ env.BIN_PATH }}
27
- name: Init chezmoi
- run: chezmoi init ${{ github.repository_owner }} --depth 1 --exclude=encrypted --exclude=externals --exclude=scripts --promptDefaults
28
+ run: ${{ env.BIN_PATH }}/chezmoi init ${{ github.repository_owner }} ${{ env.INIT_ARGS }}
0 commit comments