Skip to content

Commit

Permalink
Merge pull request #22 from Xpirix/fix_gh_workflow
Browse files Browse the repository at this point in the history
Use pip instead of pipenv
  • Loading branch information
Xpirix authored Nov 12, 2024
2 parents 6d62420 + 834260e commit 2aae045
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/update-feeds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,21 +22,20 @@ jobs:
uses: actions/setup-python@v5
with:
python-version: '3.13'
architecture: 'x64'
cache: "pipenv"
cache: 'pip'
cache-dependency-path: '**/REQUIREMENTS.txt'

- name: '🚸Install Python deps'
run: |
cd ./qgis-planet-website
curl https://raw.githubusercontent.com/pypa/pipenv/master/get-pipenv.py | python
pipenv install && pipenv install -r REQUIREMENTS.txt && pipenv sync --bare
pipenv run pip freeze
pip install -r REQUIREMENTS.txt
pip freeze
- name: '🗞️ Fetch Feed Content'
run: |
cd ./qgis-planet-website
pipenv run pip freeze
pipenv run ./fetch_feeds.py
pip freeze
./fetch_feeds.py
- name: '✉️ Commit'
uses: stefanzweifel/git-auto-commit-action@v5
Expand Down

0 comments on commit 2aae045

Please sign in to comment.