Skip to content

Commit

Permalink
Fix actions
Browse files Browse the repository at this point in the history
  • Loading branch information
froggleston committed Sep 17, 2024
1 parent 2b7c79f commit 35d7218
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
8 changes: 7 additions & 1 deletion .github/workflows/build-and-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,13 @@ jobs:
with:
persist-credentials: false

- name: Build site
- name: Install dependencies
run: |
sudo apt-get install -y build-essential libicu-dev
python -m pip install --upgrade pip
pip install pycld2 pyicu-binary
- name: Build glossary data files and site
run: make gh-site

- name: Remove _data fromm .gitignore
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/yaml-lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,8 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
apt-get install -y build-essential libicu-dev
python -m pip install --upgrade pip
pip install yamllint pycld2 pyicu-binary
pip install yamllint
if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
- name: Lint _config.yml with yamllint
run: |
Expand Down

0 comments on commit 35d7218

Please sign in to comment.