Skip to content

Commit 02c8dcf

Browse files
Fix: [AEA-0000] - fix int release (#966)
## Summary - Routine Change ### Details swaps int release steps to be correct order Signed-off-by: Bence Gadanyi <bence.gadanyi1@nhs.net>
1 parent f601ba7 commit 02c8dcf

1 file changed

Lines changed: 10 additions & 9 deletions

File tree

.github/workflows/cdk_release_code.yml

Lines changed: 10 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,16 @@ jobs:
7373
run: |
7474
cp /home/vscode/.tool-versions "$HOME/.tool-versions"
7575
76+
- name: build_artifact download
77+
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
78+
with:
79+
name: build_artifact
80+
81+
- name: extract build_artifact
82+
run: |
83+
mkdir -p .build
84+
tar -xf artifact.tar
85+
7686
- name: create_int_rc_release_notes
7787
uses: ./.github/actions/update_confluence_jira
7888
if: ${{ inputs.CREATE_INT_RC_RELEASE_NOTES == true }}
@@ -84,15 +94,6 @@ jobs:
8494
DEV_CLOUD_FORMATION_CHECK_VERSION_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_CHECK_VERSION_ROLE }}
8595
TARGET_CLOUD_FORMATION_CHECK_VERSION_ROLE: ${{ secrets.INT_CLOUD_FORMATION_CHECK_VERSION_ROLE }}
8696
DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE: ${{ secrets.DEV_CLOUD_FORMATION_EXECUTE_LAMBDA_ROLE }}
87-
- name: build_artifact download
88-
uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
89-
with:
90-
name: build_artifact
91-
92-
- name: extract build_artifact
93-
run: |
94-
mkdir -p .build
95-
tar -xf artifact.tar
9697

9798
- name: Configure AWS Credentials
9899
id: connect-aws

0 commit comments

Comments
 (0)