Skip to content

Commit

Permalink
Merge pull request #51 from reireias/fix/actions
Browse files Browse the repository at this point in the history
Fix: actions error
  • Loading branch information
reireias committed Dec 15, 2023
2 parents e8629d9 + bd76c73 commit 7a5316a
Show file tree
Hide file tree
Showing 9 changed files with 8 additions and 181 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/dryrun.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,21 +21,19 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.1.0
# NOTE: Using setup-python in ubuntu, the fontforge script is giving me an error. Therefore, use the default python.
- uses: actions/setup-python@v4.3.0
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
id: python
with:
python-version: '3.8'
if: matrix.os == 'macOS-latest'
- name: set python path
run: echo -e "[defaults]\ninterpreter_python=${{ steps.python.outputs.python-path }}" > ansible/ansible.cfg
if: matrix.os == 'macOS-latest'
- name: install python dependencies
run: |
python -m pip install --upgrade pip
pip install --upgrade setuptools
pip install ansible
pip install -r ansible/requirements.txt
- name: dryrun dotfiles
run: make check-dotfiles
- name: dryrun dependencies
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/install.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,11 @@ jobs:
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3.1.0
# NOTE: Using setup-python in ubuntu, the fontforge script is giving me an error. Therefore, use the default python.
- uses: actions/setup-python@v2.2.2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
id: python
with:
python-version: '3.8'
if: matrix.os == 'macOS-latest'
- name: set python path
run: echo -e "[defaults]\ninterpreter_python=${{ steps.python.outputs.python-path }}" > ansible/ansible.cfg
if: matrix.os == 'macOS-latest'
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3.1.0
- uses: actions/setup-python@v2.2.2
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
id: python
with:
python-version: '3.8'
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ This dotfiles installation is managed by [Ansible](https://docs.ansible.com/) an
`make dotfiles` create symbolic links in home directory.
Files are created as symbolic links and directories are created as directories.

`make dependencies` installs packages, fonts and plugins.
`make dependencies` installs packages and plugins.

These implementations can be found in the [ansible](ansible) directory.

Expand Down
1 change: 0 additions & 1 deletion ansible/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@
- tools
- zsh
- neovim
- font
- rust
3 changes: 0 additions & 3 deletions ansible/roles/font/handlers/main.yml

This file was deleted.

71 changes: 0 additions & 71 deletions ansible/roles/font/tasks/darwin.yml

This file was deleted.

80 changes: 0 additions & 80 deletions ansible/roles/font/tasks/debian.yml

This file was deleted.

14 changes: 0 additions & 14 deletions ansible/roles/font/tasks/main.yml

This file was deleted.

0 comments on commit 7a5316a

Please sign in to comment.