Skip to content

Commit

Permalink
Merge pull request #107 from MJedr/fix-actions
Browse files Browse the repository at this point in the history
fix action
  • Loading branch information
MJedr authored Aug 7, 2023
2 parents ca54f04 + 3bfaf0e commit ee93261
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,15 @@ env:

jobs:
test_and_publish:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
steps:
- name: Checkout
uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Install dependencies
run: sudo apt-get install poppler-utils
run: sudo apt-get update && sudo apt-get install poppler-utils

- name: Set up Python 3.8
uses: actions/setup-python@v2
Expand All @@ -47,7 +47,7 @@ jobs:
python setup.py sdist bdist_wheel
push_to_registry_and_deploy:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
needs: [test_and_publish]
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
steps:
Expand Down

0 comments on commit ee93261

Please sign in to comment.