Skip to content

Commit

Permalink
Merge branch 'issues/76_vaadin-24' into test/76_vaadin-24
Browse files Browse the repository at this point in the history
  • Loading branch information
mcollovati authored Feb 3, 2024
2 parents 9e26f91 + d8bf2e3 commit 1d1070c
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 293 deletions.
29 changes: 0 additions & 29 deletions .circleci/.circleci.settings.xml

This file was deleted.

227 changes: 0 additions & 227 deletions .circleci/config.yml.old

This file was deleted.

28 changes: 0 additions & 28 deletions .github/workflows/publish.yml

This file was deleted.

11 changes: 6 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ on:
default: 'development'
options:
- "development"
- "vaadin-23"
version:
description: "Version to release (e.g. 1.1.0 or 1.2.0-alpha1)"
required: true
Expand Down Expand Up @@ -65,11 +66,11 @@ jobs:
| tee -a $GITHUB_STEP_SUMMARY
exit 1
fi
#if [[ "${{ inputs.target-branch }}" != "development" && ! "${{ inputs.version }}" = "${{ inputs.target-branch }}."* ]]; then
# echo "🚫 Invalid version specified: '${{ inputs.version }}' does not match the release branch '${{ inputs.target-branch }}'." \
# | tee -a $GITHUB_STEP_SUMMARY
# exit 1
#fi
if [[ "${{ inputs.target-branch }}" != "development" && ! "vaadin-${{ inputs.version }}" = "${{ inputs.target-branch }}."* ]]; then
echo "🚫 Invalid version specified: '${{ inputs.version }}' does not match the release branch '${{ inputs.target-branch }}'." \
| tee -a $GITHUB_STEP_SUMMARY
exit 1
fi
if git rev-parse -q --verify "refs/tags/flow-${{ inputs.version }}" > /dev/null; then
echo "🚫 Version '${{ inputs.version }}' already exists. Please choose a different version." \
| tee -a $GITHUB_STEP_SUMMARY
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -519,7 +519,7 @@
</changelog>
<draft>false</draft>
<tagName>flow-{{projectVersion}}</tagName>
<releaseName>Release {{tagName}}</releaseName>
<releaseName>Release {{projectVersion}}</releaseName>
<prerelease>
<pattern>.*-(alpha|beta|rc)\d+</pattern>
</prerelease>
Expand Down
2 changes: 1 addition & 1 deletion tools/build_flow_widgetsets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ if [[ "$(curl -s -o /dev/null -w '%{http_code}' ${__base_url}/maven-metadata.xml
| grep "<classifier>vaadin-" | sed -E 's/^.*<classifier>vaadin-(.*)<\/classifier>.*/\1/g' | sort -r -t '.' || echo '')
else
# Extract existing versions from directory listing
__pattern='href="vaadin-flow-sockjs-23.4.0-alpha1-vaadin-([^"]+)\.jar\"'
__pattern='href="vaadin-flow-sockjs-'${_current_version}'-vaadin-([^"]+)\.jar\"'
__existing_classifiers=$(curl -s ${__base_url}/ | sed -E -e "/${__pattern}/!d" -e "s/.*${__pattern}.*/\1/g" || echo '')
fi

Expand Down
4 changes: 2 additions & 2 deletions vertx-vaadin-flow-jandex/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@
</executions>
</plugin>
<plugin>
<groupId>org.jboss.jandex</groupId>
<groupId>io.smallrye</groupId>
<artifactId>jandex-maven-plugin</artifactId>
<version>1.1.1</version>
<version>3.1.6</version>
<executions>
<execution>
<id>make-index</id>
Expand Down

0 comments on commit 1d1070c

Please sign in to comment.