File tree Expand file tree Collapse file tree 5 files changed +73
-62
lines changed Expand file tree Collapse file tree 5 files changed +73
-62
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on :
4
+ push :
5
+ branches :
6
+ - ' main'
7
+ pull_request :
8
+
9
+ jobs :
10
+ build :
11
+ uses : powsybl/github-ci/.github/workflows/build-generic.yml@baf0d2ed84b70d359132693880d5e530cd93f168
12
+ with :
13
+ sonarOrganization : gridsuite
14
+ sonarProjectKey : org.gridsuite:dynamic-mapping-server
15
+ dockerImage : docker.io/gridsuite/dynamic-mapping-server
16
+ dockerUsername : gridsuiteci
17
+ eventType : dynamic_mapping_server_updated
18
+ secrets :
19
+ sonar-token : ${{ secrets.SONAR_TOKEN }}
20
+ docker-token : ${{ secrets.DOCKERHUB_TOKEN }}
21
+ repo-token : ${{ secrets.REPO_ACCESS_TOKEN }}
Load Diff This file was deleted.
Original file line number Diff line number Diff line change
1
+ name : Patch
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ releaseVersion :
7
+ description : version to patch (vX.X)
8
+ required : true
9
+
10
+ jobs :
11
+ run-patch :
12
+ uses : powsybl/github-ci/.github/workflows/patch-generic.yml@baf0d2ed84b70d359132693880d5e530cd93f168
13
+ with :
14
+ githubappId : ${{ vars.GRIDSUITE_ACTIONS_APPID }}
15
+ sonarOrganization : gridsuite
16
+ sonarProjectKey : org.gridsuite:dynamic-mapping-server
17
+ dockerImage : docker.io/gridsuite/dynamic-mapping-server
18
+ dockerUsername : gridsuiteci
19
+ releaseVersion : ${{ github.event.inputs.releaseVersion }}
20
+ secrets :
21
+ githubappPrivateKey : ${{ secrets.GRIDSUITE_ACTIONS_SECRET }}
22
+ sonar-token : ${{ secrets.SONAR_TOKEN }}
23
+ docker-token : ${{ secrets.DOCKERHUB_TOKEN }}
24
+
Original file line number Diff line number Diff line change
1
+ name : Release
2
+
3
+ on :
4
+ workflow_dispatch :
5
+ inputs :
6
+ releaseVersion :
7
+ description : Release version (vX.X)
8
+ required : true
9
+ gitReference :
10
+ description : SHA of the commit from where to release or branch name
11
+ required : true
12
+
13
+ jobs :
14
+ run-release :
15
+ uses : powsybl/github-ci/.github/workflows/release-generic.yml@baf0d2ed84b70d359132693880d5e530cd93f168
16
+ with :
17
+ githubappId : ${{ vars.GRIDSUITE_ACTIONS_APPID }}
18
+ sonarOrganization : gridsuite
19
+ sonarProjectKey : org.gridsuite:dynamic-mapping-server
20
+ dockerImage : docker.io/gridsuite/dynamic-mapping-server
21
+ dockerUsername : gridsuiteci
22
+ releaseVersion : ${{ github.event.inputs.releaseVersion }}
23
+ gitReference : ${{ github.event.inputs.gitReference }}
24
+ secrets :
25
+ githubappPrivateKey : ${{ secrets.GRIDSUITE_ACTIONS_SECRET }}
26
+ sonar-token : ${{ secrets.SONAR_TOKEN }}
27
+ docker-token : ${{ secrets.DOCKERHUB_TOKEN }}
Original file line number Diff line number Diff line change 18
18
19
19
<groupId >org.gridsuite</groupId >
20
20
<artifactId >gridsuite-dynamic-mapping-server</artifactId >
21
- <version >1.0 .0-SNAPSHOT</version >
21
+ <version >2.8 .0-SNAPSHOT</version >
22
22
23
23
<packaging >jar</packaging >
24
24
<name >Dynamic Mapping server</name >
You can’t perform that action at this time.
0 commit comments