Commit 64377e6 1 parent ff5ae49 commit 64377e6 Copy full SHA for 64377e6
File tree 7 files changed +32
-11
lines changed
7 files changed +32
-11
lines changed Original file line number Diff line number Diff line change 59
59
uses : actions/checkout@v4
60
60
61
61
- name : Get EIF for Release ${{ inputs.operator_release }}
62
- uses : IABTechLab/uid2-operator/ .github/actions/download_release_artifact@main
62
+ uses : ./ .github/actions/download_release_artifact
63
63
if : ${{ inputs.operator_release != '' }}
64
64
with :
65
65
github_token : ${{ inputs.github_token }}
Original file line number Diff line number Diff line change 47
47
mkdir ${{ inputs.artifacts_output_dir }} -p
48
48
49
49
- name : Get EIF for Release ${{ inputs.operator_release }}
50
- uses : IABTechLab/uid2-operator/ .github/actions/download_release_artifact@main
50
+ uses : ./ .github/actions/download_release_artifact
51
51
if : ${{ inputs.operator_release != '' }}
52
52
with :
53
53
github_token : ${{ inputs.github_token }}
Original file line number Diff line number Diff line change 42
42
43
43
- name : Build UID2 Operator AMI
44
44
id : buildAMI
45
- uses : IABTechLab/uid2-operator/ .github/actions/build_ami@main
45
+ uses : ./ .github/actions/build_ami
46
46
with :
47
47
identity_scope : uid2
48
48
eif_repo_owner : ${{ env.REPO_OWNER }}
92
92
93
93
- name : Build EUID Operator AMI
94
94
id : buildAMI
95
- uses : IABTechLab/uid2-operator/ .github/actions/build_ami@main
95
+ uses : ./ .github/actions/build_ami
96
96
with :
97
97
identity_scope : euid
98
98
eif_repo_owner : ${{ env.REPO_OWNER }}
Original file line number Diff line number Diff line change 36
36
security-events : write
37
37
packages : write
38
38
steps :
39
+ - name : Checkout
40
+ uses : actions/checkout@v4
41
+
39
42
- name : Build Docker Image for EKS Pod
40
43
id : build_docker_image_uid
41
- uses : IABTechLab/uid2-operator/ .github/actions/build_eks_docker_image@main
44
+ uses : ./ .github/actions/build_eks_docker_image
42
45
with :
43
46
identity_scope : uid2
44
47
artifacts_output_dir : ${{ env.ARTIFACTS_BASE_OUTPUT_DIR }}/uid2
61
64
security-events : write
62
65
packages : write
63
66
steps :
67
+ - name : Checkout
68
+ uses : actions/checkout@v4
69
+
64
70
- name : Build Docker Image for EKS Pod
65
71
id : build_docker_image_euid
66
- uses : IABTechLab/uid2-operator/ .github/actions/build_eks_docker_image@main
72
+ uses : ./ .github/actions/build_eks_docker_image
67
73
with :
68
74
identity_scope : euid
69
75
artifacts_output_dir : ${{ env.ARTIFACTS_BASE_OUTPUT_DIR }}/euid
Original file line number Diff line number Diff line change 48
48
env :
49
49
GITHUB_CONTEXT : ${{ toJson(github) }}
50
50
51
+ - name : Checkout
52
+ uses : actions/checkout@v4
53
+
51
54
- name : Update Operator Version
52
55
id : update_version
53
- uses : IABTechLab/uid2-operator/ .github/actions/update_operator_version@main
56
+ uses : ./ .github/actions/update_operator_version
54
57
with :
55
58
release_type : ${{ inputs.release_type }}
56
59
version_number_input : ${{ inputs.version_number_input }}
68
71
runs-on : ubuntu-latest
69
72
needs : start
70
73
steps :
74
+ - name : Checkout
75
+ uses : actions/checkout@v4
76
+
71
77
- name : Build UID2 AWS EIF
72
78
id : build_uid2_eif
73
- uses : IABTechLab/uid2-operator/ .github/actions/build_aws_eif@main
79
+ uses : ./ .github/actions/build_aws_eif
74
80
with :
75
81
identity_scope : uid2
76
82
artifacts_base_output_dir : ${{ env.ARTIFACTS_BASE_OUTPUT_DIR }}/uid2
@@ -104,9 +110,12 @@ jobs:
104
110
runs-on : ubuntu-latest
105
111
needs : start
106
112
steps :
113
+ - name : Checkout
114
+ uses : actions/checkout@v4
115
+
107
116
- name : Build EUID AWS EIF
108
117
id : build_euid_eif
109
- uses : IABTechLab/uid2-operator/ .github/actions/build_aws_eif@main
118
+ uses : ./ .github/actions/build_aws_eif
110
119
with :
111
120
identity_scope : euid
112
121
artifacts_base_output_dir : ${{ env.ARTIFACTS_BASE_OUTPUT_DIR }}/euid
Original file line number Diff line number Diff line change 73
73
docker_version : ${{ steps.meta.outputs.version }}
74
74
tags : ${{ steps.meta.outputs.tags }}
75
75
steps :
76
+ - name : Checkout
77
+ uses : actions/checkout@v4
78
+
76
79
- name : Update Operator Version
77
80
id : update_version
78
- uses : IABTechLab/uid2-operator/ .github/actions/update_operator_version@main
81
+ uses : ./ .github/actions/update_operator_version
79
82
with :
80
83
release_type : ${{ inputs.release_type }}
81
84
version_number_input : ${{ inputs.version_number_input }}
Original file line number Diff line number Diff line change 71
71
jar_version : ${{ steps.update_version.outputs.new_version }}
72
72
image_tag : ${{ steps.update_version.outputs.image_tag }}
73
73
steps :
74
+ - name : Checkout
75
+ uses : actions/checkout@v4
76
+
74
77
- name : Update Operator Version
75
78
id : update_version
76
- uses : IABTechLab/uid2-operator/ .github/actions/update_operator_version@main
79
+ uses : ./ .github/actions/update_operator_version
77
80
with :
78
81
release_type : ${{ inputs.release_type }}
79
82
version_number_input : ${{ inputs.version_number_input }}
You can’t perform that action at this time.
0 commit comments