Compare commits

...

1 Commits

Author SHA1 Message Date
Guillaume Nodet
7a17ed123d Build 1.0.0-m2 2023-01-28 10:29:38 +01:00
2 changed files with 26 additions and 2 deletions

View File

@@ -26,7 +26,7 @@ on:
- '*'
env:
GRAALVM_VERSION: '22.3.0'
GRAALVM_VERSION: '22.3.1'
JAVA_VERSION: '17'
jobs:
@@ -76,7 +76,7 @@ jobs:
fi
- name: 'Build native distribution'
run: ./mvnw verify -Pnative -Dmrm=false -B -ntp -e -DskipTests
run: ./mvnw verify -Pnative -Dmrm=false -B -ntp -e -DskipTests -s .mvn/settings-maven-staging.xml
- name: 'Upload artifact'
uses: actions/upload-artifact@v2

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<profiles>
<profile>
<id>maven-staging</id>
<repositories>
<repository>
<id>maven-staging-1</id>
<url>https://repository.apache.org/content/repositories/maven-1859/</url>
<releases>
<enabled>true</enabled>
</releases>
<snapshots>
<enabled>false</enabled>
</snapshots>
</repository>
</repositories>
</profile>
</profiles>
<activeProfiles>
<activeProfile>maven-staging</activeProfile>
</activeProfiles>
</settings>