Skip to content

Commit b6e6ebb

Browse files
committed
refactor: don't run on tags
1 parent 50bd4a7 commit b6e6ebb

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/continuous-builds.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,11 @@
44
name: Continuous Builds
55

66
on:
7-
push
7+
push:
8+
branches:
9+
- '**'
10+
tags:
11+
- '!**'
812

913
jobs:
1014
build:
@@ -52,7 +56,7 @@ jobs:
5256
with:
5357
name: bash
5458
path: './bash*.AppImage*'
55-
upload-continuous-releases:
59+
publish:
5660
runs-on: ubuntu-20.04
5761
needs: test
5862
if: github.ref == 'refs/heads/master'

0 commit comments

Comments
 (0)