Skip to content

Commit

Permalink
Merge pull request #21 from Sefaria/fix-stable-build
Browse files Browse the repository at this point in the history
fix: use correct output value
  • Loading branch information
nsantacruz authored Jul 19, 2023
2 parents d31906d + e5ef4da commit 7d53b2a
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/gradle-build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -74,10 +74,6 @@ jobs:
- naive-lemmatizer
- naive-lemmatizer-less-prefixes
steps:
- name: Debug
run: |
echo '${{ toJSON(needs) }}'
echo '${{ toJSON(github) }}'
- uses: actions/checkout@v3
- name: Set up JDK
uses: actions/setup-java@v3
Expand All @@ -87,12 +83,12 @@ jobs:
- name: Build with Gradle
uses: gradle/gradle-build-action@v2
with:
arguments: -PVersion=${{ needs.release.outputs.release }} bundlePlugin
arguments: -PVersion=${{ needs.release.outputs.version }} bundlePlugin
build-root-directory: Sefaria-ElasticSearch-${{ matrix.module }}
- name: Upload artifact
run: |
cd Sefaria-ElasticSearch-${{ matrix.module }}/build/distributions
gh release upload ${{ needs.release.outputs.release }} '${{ matrix.module }}-${{ needs.release.outputs.release }}.zip' --clobber
gh release upload ${{ needs.release.outputs.release }} '${{ matrix.module }}-${{ needs.release.outputs.version }}.zip' --clobber
env:
GH_TOKEN: ${{ github.token }}
- name: cleanup cache
Expand Down

0 comments on commit 7d53b2a

Please sign in to comment.