Skip to content

Commit 5f6c129

Browse files
author
Dariush Wahdany
committed
ci: fix manifest
1 parent cc3a325 commit 5f6c129

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

.github/workflows/publish.yml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,16 @@ jobs:
1515

1616
- name: Install Pixi
1717
uses: prefix-dev/setup-pixi@v0.4.1
18+
with:
19+
manifest-path: pyproject.toml
1820

1921
- name: Install dependencies
2022
run: |
21-
pixi install --manifest-path pyproject.toml
22-
pixi run --manifest-path pyproject.toml install
23+
pixi install
24+
pixi run install
2325
2426
- name: Build package
25-
run: pixi run --manifest-path pyproject.toml build
27+
run: pixi run build
2628

2729
- name: Publish to PyPI
2830
uses: pypa/gh-action-pypi-publish@release/v1

.github/workflows/test.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,13 @@ jobs:
1818

1919
- name: Install Pixi
2020
uses: prefix-dev/setup-pixi@v0.4.1
21-
21+
with:
22+
manifest-path: pyproject.toml
2223

2324
- name: Install dependencies
2425
run: |
25-
pixi install --manifest-path pyproject.toml
26-
pixi run --manifest-path pyproject.toml install
26+
pixi install
27+
pixi run install
2728
2829
- name: Run tests
29-
run: pixi run --manifest-path pyproject.toml test
30+
run: pixi run test

0 commit comments

Comments
 (0)