Adding back exclusions, fixing asset_path
This commit is contained in:
parent
6e57e10169
commit
97db37e9f2
|
@ -53,6 +53,10 @@ tar -czf libretime-${suffix}.tar.gz \
|
||||||
--exclude .zfproject.xml \
|
--exclude .zfproject.xml \
|
||||||
--exclude .gitignore \
|
--exclude .gitignore \
|
||||||
--exclude .gitattributes \
|
--exclude .gitattributes \
|
||||||
|
--exclude .travis.yml \
|
||||||
|
--exclude travis \
|
||||||
--exclude dev_tools \
|
--exclude dev_tools \
|
||||||
|
--exclude vendor/phing \
|
||||||
|
--exclude vendor/simplepie/simplepie/tests \
|
||||||
libretime
|
libretime
|
||||||
echo " Done"
|
echo " Done"
|
||||||
|
|
|
@ -40,6 +40,6 @@ jobs:
|
||||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
with:
|
with:
|
||||||
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
|
upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps
|
||||||
asset_path: ./libretime-${{ github.ref }}.tar.gz
|
asset_path: ../libretime-${{ github.ref }}.tar.gz
|
||||||
asset_name: libretime-${{ github.ref }}.tar.gz
|
asset_name: libretime-${{ github.ref }}.tar.gz
|
||||||
asset_content_type: application/tgz
|
asset_content_type: application/tgz
|
||||||
|
|
Loading…
Reference in New Issue