generated from gridsuite/gridapp-template
-
Notifications
You must be signed in to change notification settings - Fork 0
27 lines (25 loc) · 912 Bytes
/
release.yml
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
26
27
name: Release
on:
workflow_dispatch:
inputs:
releaseVersion:
description: Release version (vX.X)
required: true
type: string
gitReference:
description: SHA of the commit from where to release or branch name
required: true
type: string
jobs:
run-release:
uses: powsybl/github-ci/.github/workflows/release-frontend-app-generic.yml@4fb0262ed5dbb84f8c07d2cea8f29ae01769eb19
with:
releaseVersion: ${{ github.event.inputs.releaseVersion }}
commitSha: ${{ github.event.inputs.gitReference }}
dockerImage: docker.io/gridsuite/gridadmin-app
dockerUsername: gridsuiteci
githubappId: ${{ vars.GRIDSUITE_ACTIONS_APPID }}
secrets:
VERSIONBUMP_GHAPP_PRIVATE_KEY: ${{ secrets.VERSIONBUMP_GHAPP_PRIVATE_KEY }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
sonar-token: ${{ secrets.SONAR_TOKEN }}