Merge pull request #6084 from turbo124/v5-develop

Fixes for release github actions
This commit is contained in:
David Bomba 2021-06-18 23:15:43 +10:00 committed by GitHub
commit 841dae7ab9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -49,36 +49,16 @@ jobs:
sudo rm -rf bootstrap/cache/* sudo rm -rf bootstrap/cache/*
sudo rm -rf node_modules sudo rm -rf node_modules
sudo rm -rf .git sudo rm -rf .git
# - name: Prune Git History
# run: | - name: Build project
# sudo git gc
# sudo git gc --aggressive
# sudo git prune
- name: Build project # This would actually build your project, using zip for an example artifact
run: | run: |
zip -r ./invoiceninja.zip .* -x "../*" zip -r ./invoiceninja.zip .* -x "../*"
- name: Get tag name - name: Release
id: get_tag_name uses: softprops/action-gh-release@v1
run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}-release if: startsWith(github.ref, 'refs/tags/')
- name: Create Release
id: create_release
uses: actions/create-release@v1
env: env:
GITHUB_TOKEN: ${{ secrets.RELEASE_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
tag_name: ${{ steps.get_tag_name.outputs.VERSION }} files: |
release_name: Release ${{ steps.get_tag_name.outputs.VERSION }} invoiceninja.zip
draft: false
prerelease: false
- name: Upload Release Asset
id: upload-release-asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{secrets.RELEASE_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: ./invoiceninja.zip
asset_name: invoiceninja.zip
asset_content_type: application/zip