-
Notifications
You must be signed in to change notification settings - Fork 11
37 lines (34 loc) · 1.34 KB
/
release.yaml
File metadata and controls
37 lines (34 loc) · 1.34 KB
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
28
29
30
31
32
33
34
35
36
37
name: Release of OutSystems Maps
on:
workflow_dispatch:
inputs:
new-version:
description: 'Version to be released.'
type: string
required: true
update-prerelease-into-latest:
description: 'Update pre-release into latest.'
type: boolean
default: true
delete-rc-branch:
description: 'Delete rc* branch at the end of process.'
type: boolean
default: true
permissions:
contents: read
jobs:
set-release-latest:
name: Set Release as Latest
permissions:
id-token: write
contents: write
#uses: OutSystems/ui-components.github-reusable-workflows/.github/workflows/release.yaml@7ffd7f90f6e5016bd92d0e050d2516084b99c2f6 #v0.2.5
uses: ./.github/workflows/template-release.yaml
with:
new-version: ${{ inputs.new-version }}
update-prerelease-into-latest: ${{ inputs.update-prerelease-into-latest }}
delete-rc-branch: ${{ inputs.delete-rc-branch }}
secrets:
OSUI_AZURE_CLIENT_ID: ${{ secrets.OSUI_AZURE_CLIENT_ID }}
OSUI_AZURE_TENANT_ID: ${{ secrets.OSUI_AZURE_TENANT_ID }}
OSUI_AZURE_SUBSCRIPTION_ID: ${{ secrets.OSUI_AZURE_SUBSCRIPTION_ID }}