From 87e83ce5f31c1e9f89b0f37dbaf9b98896d11d5c Mon Sep 17 00:00:00 2001 From: Technote Date: Thu, 26 Sep 2019 01:51:38 +0900 Subject: [PATCH 1/2] Update release.yml --- .github/workflows/release.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 7561fec..d86c916 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -2,3 +2,24 @@ on: push: tags: - 'v*' +name: Release + +jobs: + releases: + name: Upload build files + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@master + with: + fetch-depth: 3 + - name: Build + run: yarn build + - Upload + uses: svenstaro/upload-release-action@v1-release + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: jquery.marker-animation.min.js + asset_name: jquery.marker-animation.min.js + tag: ${{ github.ref }} + overwrite: true From eb78716ccb6452946601ea076b9a139fa6f6bfee Mon Sep 17 00:00:00 2001 From: Technote Date: Thu, 26 Sep 2019 01:58:36 +0900 Subject: [PATCH 2/2] Update release.yml --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d86c916..2d867b0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: fetch-depth: 3 - name: Build run: yarn build - - Upload + - name: Upload uses: svenstaro/upload-release-action@v1-release with: repo_token: ${{ secrets.GITHUB_TOKEN }}