We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67e8b64 commit b42a23dCopy full SHA for b42a23d
.github/workflows/build.yml
@@ -1,12 +1,6 @@
1
name: Build
2
on:
3
- pull_request:
4
- push:
5
- branches:
6
- - main
7
- tags:
8
- - "*"
9
-
+ - push
10
jobs:
11
build:
12
runs-on: ubuntu-latest
@@ -26,7 +20,6 @@ jobs:
26
20
with:
27
21
name: artifact
28
22
path: dist/*
29
30
23
release:
31
24
name: Publish package
32
25
if: startsWith(github.ref, 'refs/tags/')
.github/workflows/ci.yml
@@ -1,15 +1,10 @@
name: CI
# Automatically stop old builds on the same branch/PR
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
13
14
pre-commit:
15
timeout-minutes: 30
0 commit comments