Skip to content

Commit 87e83ce

Browse files
Update release.yml
1 parent 77b8148 commit 87e83ce

File tree

1 file changed

+21
-0
lines changed

1 file changed

+21
-0
lines changed

.github/workflows/release.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,24 @@ on:
22
push:
33
tags:
44
- 'v*'
5+
name: Release
6+
7+
jobs:
8+
releases:
9+
name: Upload build files
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@master
14+
with:
15+
fetch-depth: 3
16+
- name: Build
17+
run: yarn build
18+
- Upload
19+
uses: svenstaro/upload-release-action@v1-release
20+
with:
21+
repo_token: ${{ secrets.GITHUB_TOKEN }}
22+
file: jquery.marker-animation.min.js
23+
asset_name: jquery.marker-animation.min.js
24+
tag: ${{ github.ref }}
25+
overwrite: true

0 commit comments

Comments
 (0)