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:security-analysis-server
15+ dockerImage : docker.io/gridsuite/security-analysis-server
16+ dockerUsername : gridsuiteci
17+ eventType : security_analysis_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:security-analysis-server
17+ dockerImage : docker.io/gridsuite/security-analysis-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:security-analysis-server
20+ dockerImage : docker.io/gridsuite/security-analysis-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 1919
2020 <groupId >org.gridsuite</groupId >
2121 <artifactId >gridsuite-security-analysis-server</artifactId >
22- <version >1.0 .0-SNAPSHOT</version >
22+ <version >2.8 .0-SNAPSHOT</version >
2323
2424 <packaging >jar</packaging >
2525 <name >Security analysis server</name >
You can’t perform that action at this time.
0 commit comments