chore(deps): update dependency twpayne/chezmoi to v2.56.0 (#1236) #1756
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Installation test | |
on: | |
push: | |
permissions: | |
contents: read | |
jobs: | |
install: | |
strategy: | |
matrix: | |
os: | |
- macos-latest | |
- ubuntu-22.04 | |
runs-on: ${{ matrix.os }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install | |
run: sh -c "$(curl -fsLS get.chezmoi.io)" -- -b ${HOME}/.local/bin init --apply --branch ${{ github.ref_name }} m1yam0t0 | |
- name: Remove chezmoi binary | |
run: rm -f ${HOME}/.local/bin/chezmoi | |
install-windows: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set ExecutionPolicy | |
run: Set-ExecutionPolicy RemoteSigned -Scope CurrentUser -Force | |
- name: Install | |
run: iex "&{$(irm 'https://get.chezmoi.io/ps1')} -b $HOME/.local/bin -- init --apply --branch ${{ github.ref_name }} m1yam0t0" | |
- name: Remove chezmoi binary | |
run: rm $HOME/.local/bin/chezmoi.exe -Force |