Skip to content

chore(deps): update dependency jdx/mise to v2024.12.18 #1808

chore(deps): update dependency jdx/mise to v2024.12.18

chore(deps): update dependency jdx/mise to v2024.12.18 #1808

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