Skip to content

Commit

Permalink
fix: standardize names of the plugins throughout
Browse files Browse the repository at this point in the history
  • Loading branch information
nsantacruz committed Jul 19, 2023
1 parent e1b53c7 commit 42bd318
Show file tree
Hide file tree
Showing 44 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/gradle-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,8 @@ jobs:
strategy:
matrix:
module:
- naive-lemmatizer
- naive-lemmatizer-less-prefixes
- sefaria-naive-lemmatizer
- sefaria-naive-lemmatizer-less-prefixes
steps:
- uses: actions/checkout@v3
- name: Set up JDK
Expand All @@ -84,14 +84,14 @@ jobs:
uses: gradle/gradle-build-action@v2
with:
arguments: -PVersion=${{ needs.release.outputs.version }} bundlePlugin
build-root-directory: Sefaria-ElasticSearch-${{ matrix.module }}
build-root-directory: ${{ matrix.module }}
- name: Upload artifact
run: |
cd Sefaria-ElasticSearch-${{ matrix.module }}/build/distributions
cd ${{ matrix.module }}/build/distributions
ls
gh release upload ${{ needs.release.outputs.version }} '${{ matrix.module }}-${{ needs.release.outputs.version }}.zip' --clobber
env:
GH_TOKEN: ${{ github.token }}
- name: cleanup cache
run: rm -rf *
working-directory: Sefaria-ElasticSearch-${{ matrix.module }}/build/distributions
working-directory: ${{ matrix.module }}/build/distributions
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'elasticsearch.stable-esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'

esplugin {
name 'analysis-sefaria-naive-lemmatizer-less-prefixes'
name 'sefaria-naive-lemmatizer-less-prefixes'
description 'Sefaria analyzer'
}

Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply plugin: 'elasticsearch.stable-esplugin'
apply plugin: 'elasticsearch.yaml-rest-test'

esplugin {
name 'analysis-sefaria-naive-lemmatizer'
name 'sefaria-naive-lemmatizer'
description 'Sefaria analyzer'
}

Expand Down
File renamed without changes.
File renamed without changes.

0 comments on commit 42bd318

Please sign in to comment.