We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f33fa0a + 86f88e6 commit ff93610Copy full SHA for ff93610
.github/workflows/test_new_candidates.yml
@@ -21,10 +21,9 @@ jobs:
21
juju_track:
22
- "2.9"
23
juju_risk:
24
- - "candidate"
25
- # - "edge"
+ # - "candidate"
+ - "edge"
26
terraform:
27
- - "1.3.*"
28
- "1.4.*"
29
- "1.5.*"
30
steps:
@@ -33,7 +32,8 @@ jobs:
33
32
channel=$(echo ${{ matrix.juju_track }}/${{ matrix.juju_risk }})
34
echo "Target channel is $channel"
35
echo "channel=$channel" >> $GITHUB_ENV
36
- id=$(echo ${{ github.sha }}-${{ matrix.juju_track }}-${{ matrix.juju_risk }}-${{ matrix.terraform }})
+ terraform_version=$(echo ${{ matrix.terraform }} | awk -F'\.' '{print $1$2}')
+ id=$(echo ${{ github.sha }}-${{ matrix.juju_track }}-${{ matrix.juju_risk }}-$terraform_version)
37
echo "Target id is $id"
38
echo "id=$id" >> $GITHUB_ENV
39
- name: Checkout branch
0 commit comments