Skip to content

Commit

Permalink
re: update package index before installing dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
cybardev authored Jan 18, 2024
1 parent d9be4e4 commit 149df2e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/resume.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,14 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Install dependencies
run: sudo apt install -y pandoc wkhtmltopdf
run: |
sudo apt-get update
sudo apt-get install -y pandoc wkhtmltopdf
- name: Checkout repository
uses: actions/checkout@v4
- name: Run resume generation script
run: python3 example.py
run: |
python3 example.py
- name: Check for resume changes
id: check_updates
run: |
Expand Down

0 comments on commit 149df2e

Please sign in to comment.