Skip to content

Commit 2d7f42a

Browse files
committed
fix(Python): upload correct package filename
1 parent ee6bc9e commit 2d7f42a

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/CD.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,13 +31,13 @@ jobs:
3131
version="${GITHUB_REF##*/*/}"
3232
echo ::set-output name=version::$version
3333
npm install
34-
npm run build -- $version ${{ matrix.python }}-${{ matrix.system }}
34+
npm run build -- $version python${{ matrix.python }}-${{ matrix.system }}
3535
env:
3636
TOKEN: ${{ secrets.TOKEN }}
3737
- name: Upload
3838
uses: softprops/action-gh-release@v1
3939
with:
40-
files: "GeodePackage-${{ steps.package.outputs.version }}-${{ matrix.system }}.zip"
40+
files: "GeodePackage-${{ steps.package.outputs.version }}-python${{ matrix.python }}-${{ matrix.system }}.zip"
4141
env:
4242
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4343
- name: Notify slack

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Compile
2929
run: |
3030
npm install
31-
npm run build -- version ${{ matrix.python }}-${{ matrix.system }}
31+
npm run build -- version python${{ matrix.python }}-${{ matrix.system }}
3232
env:
3333
TOKEN: ${{ secrets.TOKEN }}
3434
- name: Notify slack

0 commit comments

Comments
 (0)