Skip to content

Commit

Permalink
Fix incorrect paths in CI flow
Browse files Browse the repository at this point in the history
  • Loading branch information
mraerino committed Mar 23, 2024
1 parent 4543744 commit e362d21
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/terraform.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -73,11 +73,11 @@ jobs:
github-token: ${{ github.token }}
script: |
const fs = require('fs').promises
const plan = JSON.parse(await fs.readFile('terraform/tfplan.json', 'utf-8'))
const humanSummary = await fs.readFile('terraform/summary.txt', 'utf-8')
const plan = JSON.parse(await fs.readFile('tfplan.json', 'utf-8'))
const humanSummary = await fs.readFile('summary.txt', 'utf-8')
let applyLog;
try {
applyLog = await fs.readFile('terraform/apply.log', 'utf-8')
applyLog = await fs.readFile('apply.log', 'utf-8')
} catch {}
function countActions(plan, type) {
Expand Down Expand Up @@ -172,7 +172,7 @@ jobs:
}
const fs = require('fs').promises
const plan = await fs.readFile('terraform/summary.txt', 'utf-8')
const plan = await fs.readFile('summary.txt', 'utf-8')
const codefence = "```"
const body = `
Expand Down

0 comments on commit e362d21

Please sign in to comment.