-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #60 from Julius278/feature/463
SDC-463, added new snapshotRepository entry into distributionManageme…
- Loading branch information
Showing
3 changed files
with
49 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: finmath smart derivative contract | ||
|
||
#only push new SNAPSHOTS from develop | ||
on: | ||
push: | ||
branches: | ||
- develop | ||
|
||
jobs: | ||
bCP1ld: | ||
name: Java 17 build and unit testing | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Set up Java | ||
uses: actions/setup-java@v1 | ||
with: | ||
java-version: 17 | ||
- name: upload SNAPSHOT to GitLab | ||
run: mvn -s github_SNAPSHOT_settings.xml clean install deploy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
|
||
<settings xmlns="http://maven.apache.org/SETTINGS/1.2.0" | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.2.0 https://maven.apache.org/xsd/settings-1.2.0.xsd"> | ||
|
||
<servers> | ||
<server> | ||
<id>gitlab</id> | ||
<configuration> | ||
<httpHeaders> | ||
<property> | ||
<name>Deploy-Token</name> | ||
<value>${DEPLOY_TOKEN}</value> | ||
</property> | ||
<property> | ||
<name>Private-Token</name> | ||
<value>${PRIVATE_TOKEN}</value> | ||
</property> | ||
</httpHeaders> | ||
</configuration> | ||
</server> | ||
</servers> | ||
|
||
</settings> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters