Skip to content

Commit 036910a

Browse files
authored
Merge branch 'master' into dependabot/maven/org.json-json-20250107
2 parents 818371d + 58f4afe commit 036910a

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

.github/workflows/continuous-integration.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
pushd ${{ runner.temp }}/jython3
4040
ant
4141
pushd dist
42-
mvn install:install-file -Dfile=./jython-dev.jar -DgroupId="org.python" -DartifactId="jython3" -Dversion="0.0.1-SNAPSHOT" -Dpackaging="jar" -DgeneratePom=true
42+
mvn install:install-file -Dfile=./jython-dev.jar -DgroupId="org.python" -DartifactId="jython3" -Dversion="0.0.1-SNAPSHOT" -Dpackaging="jar" -DgeneratePom=true -B
4343
popd
4444
popd
4545
shell: bash
@@ -50,3 +50,9 @@ jobs:
5050
popd
5151
- name: Build with Maven
5252
run: mvn -Dlogging.config.file=\${maven.multiModuleProjectDirectory}/logging.ci.properties verify -B
53+
- name: Deploy with Maven
54+
run: mvn -s .travis.settings.xml -Dgithub.username=$GITHUB_USERNAME -Dgithub.password=$GITHUB_TOKEN deploy -DskipTests -B
55+
env:
56+
GITHUB_USERNAME: ${{ secrets.GITHUB_USERNAME }}
57+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58+
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/master' }}

0 commit comments

Comments
 (0)