We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0028f4e commit fab9c7dCopy full SHA for fab9c7d
.github/workflows/build_package.yml
@@ -1,4 +1,4 @@
1
-name: Build Package
+name: Publish
2
3
on:
4
pull_request:
@@ -25,7 +25,7 @@ jobs:
25
python-version: "3.10"
26
27
- name: Install build dependencies
28
- run: pip install nox
+ run: pip install build
29
30
- name: Set BUILD_RAGNA_BASE environment variable
31
run: |
@@ -37,13 +37,8 @@ jobs:
37
38
- name: Build distribution
39
40
- if [ "${{ matrix.package }}" == "ragna-base" ]; then
41
- echo "Building package with nox -s build-base"
42
- nox -s build-base
43
- else
44
- echo "Building package with nox -s build"
45
- nox -s build
46
- fi
+ echo "Building package: ${{ matrix.package }}"
+ python -m build
47
48
- name: Verify package
49
scripts/pyproject-base.toml
scripts/pyproject.toml
0 commit comments