Skip to content

Commit

Permalink
fix(Python): upload correct package filename
Browse files Browse the repository at this point in the history
  • Loading branch information
BotellaA committed May 30, 2020
1 parent ee6bc9e commit 2d7f42a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/CD.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,13 @@ jobs:
version="${GITHUB_REF##*/*/}"
echo ::set-output name=version::$version
npm install
npm run build -- $version ${{ matrix.python }}-${{ matrix.system }}
npm run build -- $version python${{ matrix.python }}-${{ matrix.system }}
env:
TOKEN: ${{ secrets.TOKEN }}
- name: Upload
uses: softprops/action-gh-release@v1
with:
files: "GeodePackage-${{ steps.package.outputs.version }}-${{ matrix.system }}.zip"
files: "GeodePackage-${{ steps.package.outputs.version }}-python${{ matrix.python }}-${{ matrix.system }}.zip"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Notify slack
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Compile
run: |
npm install
npm run build -- version ${{ matrix.python }}-${{ matrix.system }}
npm run build -- version python${{ matrix.python }}-${{ matrix.system }}
env:
TOKEN: ${{ secrets.TOKEN }}
- name: Notify slack
Expand Down

0 comments on commit 2d7f42a

Please sign in to comment.