Skip to content

Commit

Permalink
Fix syntax in publish workflow (#87)
Browse files Browse the repository at this point in the history
  • Loading branch information
Joseph authored Jun 16, 2020
1 parent 03fee4c commit 24d311a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,10 @@ jobs:
run: |
make dist
- name: Check tag matches package version
run: |
ls \ # check tag matches package version
dist/gsfpy-${{ steps.tag.outputs.tag }}.tar.gz \
dist/gsfpy-${{ steps.tag.outputs.tag }}-py3-none-any.whl
run: >
ls
dist/gsfpy-${{ steps.tag.outputs.tag }}.tar.gz
dist/gsfpy-${{ steps.tag.outputs.tag }}-py3-none-any.whl
- name: Create Release
id: create_release
uses: actions/create-release@v1
Expand Down

0 comments on commit 24d311a

Please sign in to comment.