Skip to content

Commit

Permalink
Update gradle.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ZheSun88 authored Sep 23, 2024
1 parent 916bf46 commit 0fdad70
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,12 @@ jobs:
~/.vaadin
~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json') }}
- name: Set TB License
shell: bash
run: |
TB_LICENSE=${{secrets.TB_LICENSE}}
mkdir -p ~/.vaadin/
echo '{"username":"'`echo $TB_LICENSE | cut -d / -f1`'","proKey":"'`echo $TB_LICENSE | cut -d / -f2`'"}' > ~/.vaadin/proKey
- name: Build with Gradle
run: ./gradlew clean build '-Pvaadin.productionMode' '-Pvaadin.proKey={{ secrets.TB_LICENSE }}' --stacktrace --info --no-daemon
run: ./gradlew clean build '-Pvaadin.productionMode' --stacktrace --info --no-daemon

0 comments on commit 0fdad70

Please sign in to comment.