Skip to content

Commit

Permalink
Fix variables expansion in build-and-test.yml actions
Browse files Browse the repository at this point in the history
  • Loading branch information
hbitteur committed May 10, 2024
1 parent 39536ef commit bfbd4ad
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
file: gradle.properties
all: true

- name: Setup Java ${{ steps.all.outputs.myMinJavaVersion }}
- name: Setup Java ${{ steps.all.outputs.theMinJavaVersion }}
uses: actions/setup-java@v3
with:
java-version: ${{ steps.all.outputs.myMinJavaVersion }}
java-version: ${{ steps.all.outputs.theMinJavaVersion }}
distribution: zulu

- name: Set environment variable(s)
run: |
echo "TESSDATA_TAG=${{ steps.all.outputs.myTessdataTag }}" >> $GITHUB_ENV
echo "TESSDATA_TAG=${{ steps.all.outputs.theTessdataTag }}" >> $GITHUB_ENV
# cache loaded tessdata files so they don't have to be re-downloaded on every workflow execution
- name: Get cached tessdata files
Expand Down

0 comments on commit bfbd4ad

Please sign in to comment.