Skip to content

Commit adb3a8d

Browse files
Merge pull request #118 from technote-space/feature/#114
feat: github releases (#114)
2 parents a97b4f1 + 9b50cff commit adb3a8d

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

.github/workflows/release.yml

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,3 +60,22 @@ jobs:
6060
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
6161
BRANCH: gh-pages
6262
FOLDER: gh-pages
63+
64+
releases:
65+
name: Upload build files
66+
runs-on: ubuntu-latest
67+
steps:
68+
- name: Checkout
69+
uses: actions/checkout@master
70+
with:
71+
fetch-depth: 3
72+
- name: Build
73+
run: yarn build
74+
- name: Upload
75+
uses: svenstaro/upload-release-action@v1-release
76+
with:
77+
repo_token: ${{ secrets.GITHUB_TOKEN }}
78+
file: jquery.marker-animation.min.js
79+
asset_name: jquery.marker-animation.min.js
80+
tag: ${{ github.ref }}
81+
overwrite: true

0 commit comments

Comments
 (0)