There was an error while loading. Please reload this page.
1 parent 7b08c22 commit c2133bbCopy full SHA for c2133bb
.github/workflows/release.yml
@@ -97,9 +97,27 @@ jobs:
97
name: dist
98
path: dist
99
100
+ build_none:
101
+ runs-on: ubuntu-latest
102
+ steps:
103
+ - uses: actions/checkout@v3
104
+ - name: Install and configure Poetry
105
+ uses: snok/install-poetry@v1
106
+ with:
107
+ version: 1.8.5
108
+ - name: Install dependencies
109
+ run: poetry install --only main --only test --only typing --only build
110
+ - name: Run poetry build
111
+ run: poetry build
112
+ - name: Upload sdist
113
+ uses: actions/upload-artifact@v3
114
115
+ name: dist
116
+ path: dist
117
+
118
119
Release:
- needs: [ build, build_sdist ]
120
+ needs: [ build, build_sdist, build_none ]
121
if: success() && startsWith(github.ref, 'refs/tags/')
122
runs-on: ubuntu-latest
123
0 commit comments