Skip to content

Commit 72cc0e2

Browse files
committed
Revert "Merge branch 'malj/3002' into staging"
This reverts commit 1ced537, reversing changes made to 1522ecb.
1 parent 1ced537 commit 72cc0e2

File tree

9 files changed

+63
-43
lines changed

9 files changed

+63
-43
lines changed

.github/workflows/PROD-all-studios-v3.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -224,13 +224,15 @@ jobs:
224224
# PRODUCTION CLUSTERS
225225
- name: Deploy to Radix 🚀
226226
id: deploy
227-
uses: equinor/radix-github-actions@v2
228-
- run: |
229-
rx create job deploy
230-
--token-environment
231-
--context platform2
232-
-a equinor-web-sites
233-
-e ${{ secrets.ENV }}
227+
uses: equinor/radix-github-actions@v1
228+
with:
229+
args: >
230+
create job
231+
deploy
232+
--token-environment
233+
--context platform2
234+
-a equinor-web-sites
235+
-e ${{ secrets.ENV }}
234236
-f
235237
236238
- uses: act10ns/slack@v2

.github/workflows/PROD-all-webs-and-studios.yaml

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161

6262
- name: Deploy to Radix 🚀
6363
id: deploy-main
64-
uses: equinor/radix-github-actions@v2
65-
- run: |
66-
rx create job deploy
64+
uses: equinor/radix-github-actions@v1
65+
with:
66+
args: >
67+
create job
68+
deploy
6769
--token-environment
6870
--context platform2
6971
-a equinor-web-sites
@@ -175,9 +177,11 @@ jobs:
175177

176178
- name: Deploy to Radix 🚀
177179
id: deploy
178-
uses: equinor/radix-github-actions@v2
179-
- run: |
180-
rx create job deploy
180+
uses: equinor/radix-github-actions@v1
181+
with:
182+
args: >
183+
create job
184+
deploy
181185
--token-environment
182186
--context platform2
183187
-a equinor-web-sites

.github/workflows/PROD-all-webs.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,11 @@ jobs:
6161
# MAIN CLUSTER PLATFORM2
6262
- name: Deploy to Radix 🚀
6363
id: deploy-main
64-
uses: equinor/radix-github-actions@v2
65-
- run: |
66-
rx create job deploy
64+
uses: equinor/radix-github-actions@v1
65+
with:
66+
args: >
67+
create job
68+
deploy
6769
--token-environment
6870
--context platform2
6971
-a equinor-web-sites

.github/workflows/PROD-studios-selected.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,11 @@ jobs:
7676
# PRODUCTION CLUSTERS
7777
- name: Deploy to Radix 🚀
7878
id: deploy
79-
uses: equinor/radix-github-actions@v2
80-
- run: |
81-
rx create job deploy
79+
uses: equinor/radix-github-actions@v1
80+
with:
81+
args: >
82+
create job
83+
deploy
8284
--token-environment
8385
--context platform2
8486
-a equinor-web-sites

.github/workflows/PROD-webs-rollback.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -115,9 +115,11 @@ jobs:
115115
# MAIN PRODUCTION CLUSTER
116116
- name: Deploy to Radix 🚀
117117
id: deploy-main
118-
uses: equinor/radix-github-actions@v2
119-
- run: |
120-
rx create job deploy
118+
uses: equinor/radix-github-actions@v1
119+
with:
120+
args: >
121+
create job
122+
deploy
121123
--token-environment
122124
--context platform2
123125
-a equinor-web-sites

.github/workflows/PROD-webs.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,11 @@ jobs:
7777
uses: ./.github/workflows/get-auth-token/
7878
- name: Deploy website on Radix 🚀
7979
id: deploy
80-
uses: equinor/radix-github-actions@v2
81-
- run: |
82-
rx create job deploy
80+
uses: equinor/radix-github-actions@v1
81+
with:
82+
args: >
83+
create job
84+
deploy
8385
--token-environment
8486
--context platform2
8587
-a equinor-web-sites

.github/workflows/deploy-v3/action.yaml

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -131,14 +131,16 @@ runs:
131131
# MAIN CLUSTER
132132
- name: Deploy to Radix c2 🚀
133133
id: deploy-c2
134-
uses: equinor/radix-github-actions@v2
135-
run: |
136-
rx create job deploy
134+
uses: equinor/radix-github-actions@v1
135+
with:
136+
args: >
137+
create job
138+
deploy
137139
--token-environment
138-
--context platform2
139-
--component $COMPONENT_NAME
140-
-a equinor-web-sites
141-
-e ${{ inputs.environment }}
140+
--context platform2
141+
--component $COMPONENT_NAME
142+
-a equinor-web-sites
143+
-e ${{ inputs.environment }}
142144
-f
143145
- name: log-errors-to-slack 📄
144146
uses: act10ns/slack@v2

.github/workflows/deploy-websites/action.yaml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,14 +115,16 @@ runs:
115115
# MAIN CLUSTER
116116
- name: Deploy to Radix c2 🚀
117117
id: deploy-c2
118-
uses: equinor/radix-github-actions@v2
119-
run: |
120-
rx create job deploy
121-
--token-environment
122-
--component $COMPONENT_NAME
123-
--context platform2
124-
-a equinor-web-sites
125-
-e ${{ inputs.environment }}
118+
uses: equinor/radix-github-actions@v1
119+
with:
120+
args: >
121+
create job
122+
deploy
123+
--token-environment
124+
--component $COMPONENT_NAME
125+
--context platform2
126+
-a equinor-web-sites
127+
-e ${{ inputs.environment }}
126128
-f
127129
128130
- name: log-errors-to-slack 📄

.github/workflows/studios-rollback.yaml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,11 @@ jobs:
255255
# MAIN PRODUCTION CLUSTER
256256
- name: Deploy to Radix 🚀
257257
id: deploy-main
258-
uses: equinor/radix-github-actions@v2
259-
- run: |
260-
rx create job deploy
258+
uses: equinor/radix-github-actions@v1
259+
with:
260+
args: >
261+
create job
262+
deploy
261263
--token-environment
262264
--context platform2
263265
-a equinor-web-sites

0 commit comments

Comments
 (0)