Skip to content
This repository has been archived by the owner on Jul 24, 2024. It is now read-only.

Commit

Permalink
fix: upload package configuration
Browse files Browse the repository at this point in the history
  • Loading branch information
alviezhang committed Jul 13, 2021
1 parent 10472fa commit bbce13a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,13 @@ jobs:
- name: Build
run: |
make build
- name: Get the version
id: get_version
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}
- name: Upload artifact
uses: actions/upload-artifact@v2
with:
name: ${{ github.ref.replace("refs/tags/", "") }}
name: ${{ steps.get_version.outputs.VERSION }}
path: dist
- name: Publish release to PyPI
run: |
Expand Down

0 comments on commit bbce13a

Please sign in to comment.