File tree Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Expand file tree Collapse file tree 3 files changed +14
-4
lines changed Original file line number Diff line number Diff line change 67
67
description : Additional parameters of aws cloudformation deploy
68
68
required : false
69
69
type : string
70
+ runner :
71
+ description : Runner to use
72
+ required : false
73
+ type : string
74
+ default : ubuntu-22.04-arm64
70
75
71
76
outputs :
72
77
stackOutputs :
86
91
87
92
jobs :
88
93
deploy :
89
- runs-on : ubuntu-latest
94
+ runs-on : ${{ inputs.runner }}
90
95
outputs :
91
96
stackOutputs : ${{ steps.deploy.outputs.stackOutputs }}
92
97
steps :
Original file line number Diff line number Diff line change 77
77
description : Runner to use
78
78
required : false
79
79
type : string
80
- default : ubuntu-22.04
80
+ default : ubuntu-22.04-arm64
81
81
helmfileVersion :
82
82
description : Helmfile version
83
83
required : false
Original file line number Diff line number Diff line change 8
8
description : Commit SHA
9
9
required : false
10
10
type : string
11
+ runner :
12
+ description : Runner to use
13
+ required : false
14
+ type : string
15
+ default : ubuntu-22.04-arm64
11
16
12
17
outputs :
13
18
short_commit_sha :
25
30
26
31
jobs :
27
32
get_values :
28
- runs-on : ubuntu-latest
33
+ runs-on : ${{ inputs.runner }}
29
34
outputs :
30
35
short_commit_sha : ${{ steps.get_context.outputs.short_commit_sha }}
31
36
clean_branch_name : ${{ steps.get_context.outputs.clean_branch_name }}
56
61
echo "clean_branch_name=${CLEAN_BRANCH_NAME}" >> $GITHUB_OUTPUT
57
62
echo "clean_branch_name_with_suffix=${CLEAN_BRANCH_NAME_WITH_SUFFIX}" >> $GITHUB_OUTPUT
58
63
59
- - name : get last commit author
64
+ - name : get last commit author
60
65
uses : actions/github-script@v7
61
66
id : get_commit_author
62
67
with :
You can’t perform that action at this time.
0 commit comments