1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-28 20:27:13 +02:00

Merge pull request #6039 from turbo124/v5-stable

Fixes for release
This commit is contained in:
David Bomba 2021-06-16 07:19:50 +10:00 committed by GitHub
commit f32766bbf0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -65,13 +65,13 @@ jobs:
- name: Create Release - name: Create Release
id: create_release id: create_release
uses: actions/create-release@v1 uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PAT }}
with: with:
tag_name: ${{ steps.get_tag_name.outputs.VERSION }} tag_name: ${{ steps.get_tag_name.outputs.VERSION }}
release_name: Release ${{ steps.get_tag_name.outputs.VERSION }} release_name: Release ${{ steps.get_tag_name.outputs.VERSION }}
draft: false draft: false
prerelease: false prerelease: false
token: ${{ secrets.PAT }}
- name: Upload Release Asset - name: Upload Release Asset
id: upload-release-asset id: upload-release-asset
uses: actions/upload-release-asset@v1 uses: actions/upload-release-asset@v1
@ -82,3 +82,4 @@ jobs:
asset_path: ./invoiceninja.zip asset_path: ./invoiceninja.zip
asset_name: invoiceninja.zip asset_name: invoiceninja.zip
asset_content_type: application/zip asset_content_type: application/zip
token: ${{ secrets.PAT }}