Skip to content

Commit

Permalink
Fix upload tag name
Browse files Browse the repository at this point in the history
  • Loading branch information
SMillerDev committed Feb 10, 2020
1 parent 1bf46e5 commit 5d8b3af
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,16 +45,16 @@ jobs:
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/out/phpdraft-${{ github.ref }}.phar
asset_name: phpdraft-${{ github.ref }}.phar
tag: ${{ github.ref }}
file: build/out/phpdraft-${{ github.event.release.tag_name }}.phar
asset_name: phpdraft-${{ github.event.release.tag_name }}.phar
tag: ${{ github.event.release.tag_name }}
overwrite: false

- name: Upload library to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/out/phpdraft-library-${{ github.ref }}.phar
asset_name: phpdraft-library-${{ github.ref }}.phar
tag: ${{ github.ref }}
file: build/out/phpdraft-library-${{ github.event.release.tag_name }}.phar
asset_name: phpdraft-library-${{ github.event.release.tag_name }}.phar
tag: ${{ github.event.release.tag_name }}
overwrite: false

0 comments on commit 5d8b3af

Please sign in to comment.