Adding back exclusions, fixing asset_path

This commit is contained in:
Zachary Klosko 2020-12-09 17:03:49 -05:00
parent 6e57e10169
commit 97db37e9f2
2 changed files with 5 additions and 1 deletions

View File

@ -53,6 +53,10 @@ tar -czf libretime-${suffix}.tar.gz \
--exclude .zfproject.xml \
--exclude .gitignore \
--exclude .gitattributes \
--exclude .travis.yml \
--exclude travis \
--exclude dev_tools \
--exclude vendor/phing \
--exclude vendor/simplepie/simplepie/tests \
libretime
echo " Done"

View File

@ -40,6 +40,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
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
asset_path: ./libretime-${{ github.ref }}.tar.gz
asset_path: ../libretime-${{ github.ref }}.tar.gz
asset_name: libretime-${{ github.ref }}.tar.gz
asset_content_type: application/tgz