Skip to content

Commit

Permalink
πŸ’š. Change release action
Browse files Browse the repository at this point in the history
  • Loading branch information
daschaa authored Jan 29, 2022
1 parent 801b4b0 commit 7d22461
Showing 1 changed file with 16 additions and 7 deletions.
23 changes: 16 additions & 7 deletions .github/workflows/package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,13 +48,22 @@ jobs:
chmod +x billboard.app
echo "After move"
ls -l
- name: Release
uses: softprops/action-gh-release@v1
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
files: |
**/billboard.app
billboard.app
tag_name: ${{ steps.set_release_name.outputs.current-version }}
name: Release ${{ steps.set_release_name.outputs.current-version }}
tag_name: ${{ steps.set_release_name.outputs.current-version}}
release_name: Release ${{ steps.set_release_name.outputs.current-version}}
draft: false
prerelease: false
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./billboard.app
asset_name: billboard.app
asset_content_type: application/octet-stream

0 comments on commit 7d22461

Please sign in to comment.