From 2c0bd584bff80f9d3ed507776d14e975e30e59dc Mon Sep 17 00:00:00 2001 From: Philip Lykke Carlsen Date: Mon, 11 Dec 2023 18:17:47 +0100 Subject: [PATCH] Update CI actions for aurora --- .github/workflows/cargo-test.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/cargo-test.yaml b/.github/workflows/cargo-test.yaml index cacf0ed5d..b5b7a717f 100644 --- a/.github/workflows/cargo-test.yaml +++ b/.github/workflows/cargo-test.yaml @@ -127,9 +127,13 @@ jobs: AURORA_CONNECTION_STRING: ${{ secrets.AURORA_CONNECTION_STRING }} run: | # take connection string from env, create deployment file with it - cat static/aurora/chinook-deployment-template.json \ + cat static/aurora/v1-chinook-deployment-template.json \ | jq '.connectionUri={"uri":{"value":(env | .AURORA_CONNECTION_STRING)}}' \ - > static/aurora/chinook-deployment.json + > static/aurora/v1-chinook-deployment.json + + cat static/aurora/v2-chinook-deployment-template.json \ + | jq '.connectionUri={"uri":{"value":(env | .AURORA_CONNECTION_STRING)}}' \ + > static/aurora/v2-chinook-deployment.json - name: install tools run: |