Revert "Build snap based on branch instead of tag"

This reverts commit 2e5dd05a6c.
This commit is contained in:
JonnyWong16 2020-12-19 12:11:03 -08:00
commit 40e1eb9a49
No known key found for this signature in database
GPG key ID: B1F1F9807184697A
2 changed files with 12 additions and 5 deletions

View file

@ -3,7 +3,7 @@ name: Publish Snap
on:
push:
branches: [master, beta, nightly]
#tags: [v*]
tags: [v*]
pull_request: ~
jobs:
@ -28,10 +28,10 @@ jobs:
id: prepare
run: |
git fetch --prune --unshallow --tags
if [[ $GITHUB_REF == refs/heads/master ]]; then
echo ::set-output name=RELEASE::stable
elif [[ $GITHUB_REF == refs/heads/beta ]]; then
if [[ $GITHUB_REF == refs/tags/*-beta || $GITHUB_REF == refs/heads/beta ]]; then
echo ::set-output name=RELEASE::beta
elif [[ $GITHUB_REF == refs/tags/* || $GITHUB_REF == refs/heads/master ]]; then
echo ::set-output name=RELEASE::stable
else
echo ::set-output name=RELEASE::edge
fi
@ -58,7 +58,9 @@ jobs:
- name: Publish Snap Package
uses: snapcore/action-publish@v1
if: github.event_name != 'pull_request'
if: >
github.event_name != 'pull_request' &&
(startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/nightly')
with:
store_login: ${{ secrets.SNAP_LOGIN }}
snap: ${{ steps.build.outputs.snap }}