Skip to content

Commit

Permalink
use wheels2
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Apr 17, 2024
1 parent 615dc23 commit 30887ad
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/plugin-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,12 @@ jobs:
run: qgis-plugin-ci push-translation ${{ secrets.TX_TOKEN }}

- name: Install pgservice parser
run: pip install -r requirements.txt -t pg_service_parser/libs
run: |
pip download -r requirements.txt --only-binary :all: -d temp/
unzip -o "temp/*.whl" -d pg_service_parser/libs
rm -r temp
# set write rights to group (because qgis-plugin-ci needs it)
chmod -R g+w pg_service_parser/libs
- name: Package
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
Expand Down
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
pg_service_parser/libs
.idea
__pycache__

0 comments on commit 30887ad

Please sign in to comment.