Also publish snap to beta for full release

This commit is contained in:
JonnyWong16 2020-12-19 15:30:02 -08:00
parent 40e1eb9a49
commit 366823cee9
No known key found for this signature in database
GPG key ID: B1F1F9807184697A

View file

@ -66,6 +66,16 @@ jobs:
snap: ${{ steps.build.outputs.snap }} snap: ${{ steps.build.outputs.snap }}
release: ${{ steps.prepare.outputs.RELEASE }} release: ${{ steps.prepare.outputs.RELEASE }}
- name: Publish Snap Package (beta)
uses: snapcore/action-publish@v1
if: >
github.event_name != 'pull_request' &&
startsWith(github.ref, 'refs/tags/') && !endsWith(github.ref, '-beta')
with:
store_login: ${{ secrets.SNAP_LOGIN }}
snap: ${{ steps.build.outputs.snap }}
release: beta
discord: discord:
name: Discord Notification name: Discord Notification
needs: build-snap needs: build-snap