diff --git a/.github/workflows/build-dict-index.yml b/.github/workflows/build-dict-index.yml index 09c61cc..a6f3f73 100644 --- a/.github/workflows/build-dict-index.yml +++ b/.github/workflows/build-dict-index.yml @@ -3,6 +3,8 @@ name: Build on: push: branches: [ "master" ] + tags: + - "mecab-ko-dic-*" pull_request: branches: [ "master" ] jobs: @@ -32,4 +34,9 @@ jobs: - name: Upload a Build Artifact uses: actions/upload-artifact@v3 with: - path: mecab-ko-dic-msvc.zip \ No newline at end of file + path: mecab-ko-dic-msvc.zip + - name: Release Artifact + uses: softprops/action-gh-release@v1 + if: startsWith(github.ref, 'refs/tags/') + with: + files: mecab-ko-dic-msvc.zip \ No newline at end of file