Skip to content

Commit f64007e

Browse files
authored
Add license key (#271)
1 parent e241aa0 commit f64007e

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/build_package.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ jobs:
2828
restore-keys: |
2929
${{ runner.os }}-maven-
3030
- name: Run mvn package
31-
run: mvn -B package --file pom.xml
31+
run: VAADIN_OFFLINE_KEY=${{ secrets.VAADIN_SERVER_23_2 }} mvn -B package --file pom.xml

.github/workflows/create-release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: mvn versions:set -DnewVersion=${{ github.event.inputs.versionTag }}
3838

3939
- name: Build with Maven
40-
run: mvn -B package -Pproduction --file pom.xml
40+
run: VAADIN_OFFLINE_KEY=${{ secrets.VAADIN_SERVER_23_2 }} mvn -B package -Pproduction --file pom.xml
4141

4242
- name: Create Release Notes
4343
if: ${{ !startsWith(github.ref, 'refs/tags/')

.github/workflows/nexus-publish-snapshots.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: mvn versions:set -DnewVersion='${project.version}-SNAPSHOT'
4040

4141
- name: Build with Maven
42-
run: mvn -B package --file pom.xml
42+
run: VAADIN_OFFLINE_KEY=${{ secrets.VAADIN_SERVER_23_2 }} mvn -B package --file pom.xml
4343

4444
- name: Publish artefact to QBiC Nexus Repository
4545
run: mvn --settings $GITHUB_WORKSPACE/.github.settings.xml deploy

0 commit comments

Comments
 (0)