Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
debuggerboy committed Oct 24, 2020
1 parent 49bd11e commit 0800bfc
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/debBuild.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,21 @@ jobs:
with:
name: ${{ steps.build.outputs.filename }}
path: ${{ steps.build.outputs.filename }}

- uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
draft: false
prerelease: false

- uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ${{ steps.build.outputs.filename }}
asset_name: purple-hangout-0.0.0.1.deb
asset_content_type: application/vnd.debian.binary-package

0 comments on commit 0800bfc

Please sign in to comment.