zsh update #13
Workflow file for this run
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: dotfiles-CI | |
on: | |
workflow_dispatch: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
schedule: | |
- cron: "0 5 * * 1" | |
concurrency: | |
group: ${{github.ref}}-${{github.head_ref}}-ci | |
cancel-in-progress: true | |
jobs: | |
OSX: | |
runs-on: macos-latest | |
steps: | |
- name: Dependencies | |
run: | | |
brew install chezmoi | |
- name: Install | |
run: | | |
export BRANCH=${{ github.head_ref || github.ref_name }} | |
echo $BRANCH | |
chezmoi init https://github.com/marchdf/dotfiles.git --branch ${BRANCH} --promptString email="" --promptBool use_zsh_root_dir=false | |
chezmoi data | |
# chezmoi apply -v |