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 955aef6 commit 397230fCopy full SHA for 397230f
1 file changed
.github/workflows/ci-cd.yml
@@ -79,18 +79,29 @@ jobs:
79
# run: |
80
# poetry run python -m finecode run lint
81
# shell: bash
82
-
83
- - name: Build
+
+ - name: Build finecode_extension_api
84
+ if: runner.os == 'Linux'
85
run: |
86
+ pushd finecode_extension_api
87
poetry build
88
+ popd
89
shell: bash
90
91
+ # - name: Build finecode
92
+ # if: runner.os == 'Linux'
93
+ # run: |
94
+ # poetry build
95
+ # shell: bash
96
97
- name: Store the distribution packages
98
uses: actions/upload-artifact@v4
99
if: runner.os == 'Linux'
100
with:
- name: python-package-distributions
- path: dist/
101
+ name: finecode-distributions
102
+ path: |
103
+ dist/
104
+ finecode_extension_api/dist/
105
106
# - name: Run unit tests
107
# if: ${{ !cancelled() }}
0 commit comments