Skip to content

Commit 0c046d4

Browse files
committed
enable workflow only when pushing tags
1 parent 3758fec commit 0c046d4

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

.github/workflows/playground.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
name: Build playground
2-
on: [push]
2+
on:
3+
push:
4+
tags:
5+
- '*'
36
jobs:
47
run:
58
name: Build
@@ -34,6 +37,6 @@ jobs:
3437
- name: Archive npm artifacts
3538
uses: actions/upload-artifact@v1
3639
with:
37-
name: playground
40+
name: reason-js-compiler
3841
path: playground
3942

0 commit comments

Comments
 (0)