File tree Expand file tree Collapse file tree 8 files changed +16
-98
lines changed
vaadin-date-range-picker-demo Expand file tree Collapse file tree 8 files changed +16
-98
lines changed Original file line number Diff line number Diff line change @@ -31,13 +31,13 @@ jobs:
31
31
GH_TOKEN : ${{ github.token }}
32
32
33
33
- name : Close issue if everything is fine
34
- if : env.lychee_exit_code == 0 && steps.find-issue.outputs.number != ''
34
+ if : steps.lychee.outputs.exit_code == 0 && steps.find-issue.outputs.number != ''
35
35
run : gh issue close -r 'not planned' ${{ steps.find-issue.outputs.number }}
36
36
env :
37
37
GH_TOKEN : ${{ github.token }}
38
38
39
39
- name : Create Issue From File
40
- if : env.lychee_exit_code != 0
40
+ if : steps.lychee.outputs.exit_code != 0
41
41
uses : peter-evans/create-issue-from-file@e8ef132d6df98ed982188e460ebb3b5d4ef3a9cd # v5
42
42
with :
43
43
issue-number : ${{ steps.find-issue.outputs.number }}
Original file line number Diff line number Diff line change @@ -107,9 +107,6 @@ jobs:
107
107
runs-on : ubuntu-latest
108
108
needs : [prepare-release]
109
109
timeout-minutes : 60
110
- permissions :
111
- contents : read
112
- packages : write
113
110
steps :
114
111
- uses : actions/checkout@v4
115
112
@@ -124,15 +121,17 @@ jobs:
124
121
with : # running setup-java overwrites the settings.xml
125
122
distribution : ' temurin'
126
123
java-version : ' 17'
124
+ server-id : github-central
125
+ server-password : PACKAGES_CENTRAL_TOKEN
127
126
gpg-passphrase : MAVEN_GPG_PASSPHRASE
128
127
gpg-private-key : ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Only import once
129
128
130
- - name : Publish to Central Portal
131
- run : ../mvnw -B deploy -P publish -DskipTests -DaltDeploymentRepository=github::https://maven.pkg.github.com/${{ github.repository }}
129
+ - name : Publish to GitHub Packages Central
130
+ run : ../mvnw -B deploy -P publish -DskipTests -DaltDeploymentRepository=github-central::https://maven.pkg.github.com/xdev-software/central
131
+ working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
132
132
env :
133
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
133
+ PACKAGES_CENTRAL_TOKEN : ${{ secrets.PACKAGES_CENTRAL_TOKEN }}
134
134
MAVEN_GPG_PASSPHRASE : ${{ secrets.MAVEN_GPG_PASSPHRASE }}
135
- working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
136
135
137
136
- name : Set up JDK
138
137
uses : actions/setup-java@v4
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 10
10
publish-maven :
11
11
runs-on : ubuntu-latest
12
12
timeout-minutes : 60
13
- permissions :
14
- contents : read
15
- packages : write
16
13
steps :
17
14
- uses : actions/checkout@v4
18
15
@@ -21,14 +18,16 @@ jobs:
21
18
with : # running setup-java overwrites the settings.xml
22
19
distribution : ' temurin'
23
20
java-version : ' 17'
21
+ server-id : github-central
22
+ server-password : PACKAGES_CENTRAL_TOKEN
24
23
gpg-passphrase : MAVEN_GPG_PASSPHRASE
25
24
gpg-private-key : ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Only import once
26
25
27
- - name : Publish to GitHub Packages
28
- run : ../mvnw -B deploy -P publish -DskipTests -DaltDeploymentRepository=github::https://maven.pkg.github.com/${{ github.repository }}
26
+ - name : Publish to GitHub Packages Central
27
+ run : ../mvnw -B deploy -P publish -DskipTests -DaltDeploymentRepository=github-central ::https://maven.pkg.github.com/xdev-software/central
29
28
working-directory : ${{ env.PRIMARY_MAVEN_MODULE }}
30
29
env :
31
- GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
30
+ PACKAGES_CENTRAL_TOKEN : ${{ secrets.PACKAGES_CENTRAL_TOKEN }}
32
31
MAVEN_GPG_PASSPHRASE : ${{ secrets.MAVEN_GPG_PASSPHRASE }}
33
32
34
33
- name : Set up JDK
Original file line number Diff line number Diff line change 14
14
# KIND, either express or implied. See the License for the
15
15
# specific language governing permissions and limitations
16
16
# under the License.
17
- distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.10 /apache-maven-3.9.10 -bin.zip
17
+ distributionUrl =https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.11 /apache-maven-3.9.11 -bin.zip
Original file line number Diff line number Diff line change 1
1
[ ![ Published on Vaadin Directory] ( https://img.shields.io/badge/Vaadin%20Directory-published-00b4f0?logo=vaadin )] ( https://vaadin.com/directory/component/daterangepicker-for-vaadin )
2
2
[ ![ Latest version] ( https://img.shields.io/maven-central/v/software.xdev/vaadin-date-range-picker?logo=apache%20maven )] ( https://mvnrepository.com/artifact/software.xdev/vaadin-date-range-picker )
3
3
[ ![ Build] ( https://img.shields.io/github/actions/workflow/status/xdev-software/vaadin-date-range-picker/check-build.yml?branch=develop )] ( https://github.com/xdev-software/vaadin-date-range-picker/actions/workflows/check-build.yml?query=branch%3Adevelop )
4
- [ ![ Quality Gate Status] ( https://sonarcloud.io/api/project_badges/measure?project=xdev-software_vaadin-date-range-picker&metric=alert_status )] ( https://sonarcloud.io/dashboard?id=xdev-software_vaadin-date-range-picker )
5
4
![ Vaadin 24+] ( https://img.shields.io/badge/Vaadin%20Platform/Flow-24+-00b4f0 )
6
5
7
6
# DateRangePicker for Vaadin
Original file line number Diff line number Diff line change 29
29
<mainClass >software.xdev.vaadin.Application</mainClass >
30
30
31
31
<!-- Dependency-Versions -->
32
- <vaadin .version>24.8.0 </vaadin .version>
32
+ <vaadin .version>24.8.3 </vaadin .version>
33
33
34
34
<org .springframework.boot.version>3.5.3</org .springframework.boot.version>
35
35
</properties >
Original file line number Diff line number Diff line change 49
49
<project .reporting.outputEncoding>UTF-8</project .reporting.outputEncoding>
50
50
51
51
<!-- Dependency-Versions -->
52
- <vaadin .version>24.8.0 </vaadin .version>
52
+ <vaadin .version>24.8.3 </vaadin .version>
53
53
</properties >
54
54
55
55
<dependencyManagement >
You can’t perform that action at this time.
0 commit comments