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.
1 parent 577ac69 commit ee909e0Copy full SHA for ee909e0
.github/workflows/docker-build.yaml
@@ -38,18 +38,19 @@ jobs:
38
39
- name: Create summary header
40
run: |
41
- echo '## Test Results' >> $GITHUB_STEP_SUMMARY
+ echo '## Test Results' | tee -a $GITHUB_STEP_SUMMARY
42
43
run_and_test:
44
- runs-on: ${{ matrix.os }}
45
- strategy:
46
- matrix:
47
- # TODO: Test OpenTofu
48
- terraform_version:
49
- - '1.10.4' # Latest
50
- - '1.5.6' # Popular
51
- - '1.3.9' # Popular
+ runs-on: ubuntu-latest
+ strategy:
+ matrix:
+ # TODO: Test OpenTofu
+ terraform_version:
+ - '1.10.4' # Latest
+ - '1.5.6' # Popular
+ - '1.3.9' # Popular
52
53
+ steps:
54
- name: Download Docker Image
55
uses: actions/download-artifact@v3
56
with:
0 commit comments