Skip to content

Commit

Permalink
add vaadin license
Browse files Browse the repository at this point in the history
  • Loading branch information
ZheSun88 authored Sep 23, 2024
1 parent 098a57e commit 00f3ba0
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,11 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: ${{ matrix.java }}
- name: Set Vaadin license
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: Cache Gradle packages
uses: actions/cache@v2
with:
Expand All @@ -32,9 +37,6 @@ jobs:
~/.vaadin
~/.pnpm-store
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml', '**/package.json') }}
- uses: ./.github/actions/setup
with:
tb-license: ${{ secrets.TB_LICENSE }}
- name: Build with Gradle
run: ./gradlew clean build '-Pvaadin.productionMode' --stacktrace --info --no-daemon

0 comments on commit 00f3ba0

Please sign in to comment.