-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
46 lines (43 loc) · 1.62 KB
/
action.yml
File metadata and controls
46 lines (43 loc) · 1.62 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
38
39
40
41
42
43
44
45
46
name: 'Setup Redgate Flyway'
description: 'Set up Flyway and add the command-line to the PATH'
author: 'Redgate'
branding:
icon: database
color: red
inputs:
version:
description: The version specification
default: latest
edition:
description: The Flyway edition to use. Must be one of 'community', 'teams', or 'enterprise'.
required: true
i-agree-to-the-eula:
description: Confirm you consent to the EULA found at https://www.red-gate.com/eula.
required: true
architecture:
description: The target platform architecture. Defaults to the current platform's architecture.
platform:
description: The target OS platform. Defaults to the current platform.
email:
description: A Redgate email to be used in conjunction with the token parameter to configure a personal access token (PAT). Used to authenticate Flyway to use either Teams or Enterprise.
required: false
token:
description: A personal access token (PAT) to be used in conjunction with the email configuration parameter. This is used to license Flyway to access Teams or Enterprise features.
required: false
max-auth-attempts:
description: The maximum number of times to attempt authenticating Flyway. Defaults to 2.
required: false
default: '2'
clean-old-cached-versions:
description: Remove older versions of Flyway from the tool cache on self-hosted runners.
required: false
default: 'true'
outputs:
path:
description: The path to the tool installation folder
version:
description: The specific version installed
runs:
using: 'node24'
main: 'dist/index.js'
post: 'dist/cleanup.js'