-
Notifications
You must be signed in to change notification settings - Fork 0
25 lines (23 loc) · 886 Bytes
/
release.yml
File metadata and controls
25 lines (23 loc) · 886 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
name: Release
on:
workflow_dispatch:
inputs:
releaseVersion:
description: Release version (vX.X)
required: true
gitReference:
description: SHA of the commit from where to release or branch name
required: true
jobs:
run-release:
uses: powsybl/github-ci/.github/workflows/release-backend-app-generic.yml@3ed0caeb3395e55868884f466d726ddaee877850
with:
githubappId: ${{ vars.GRIDSUITE_ACTIONS_APPID }}
dockerImage: docker.io/gridsuite/network-modification-server
dockerUsername: gridsuiteci
releaseVersion: ${{ github.event.inputs.releaseVersion }}
gitReference: ${{ github.event.inputs.gitReference }}
secrets:
VERSIONBUMP_GHAPP_PRIVATE_KEY: ${{ secrets.VERSIONBUMP_GHAPP_PRIVATE_KEY }}
sonar-token: ${{ secrets.SONAR_TOKEN }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}