summaryrefslogtreecommitdiffstats
path: root/pkg/runner/testdata/uses-composite-with-pre-and-post-steps/action-with-pre-and-post/post.js
blob: d3fff73f8cb204d69a3e4549cebebc9cd9bae3ba (plain)
1
2
3
const { appendFileSync } = require('fs');
const step = process.env['INPUT_STEP'];
appendFileSync(process.env['GITHUB_ENV'], `;${step}-post`, { encoding:'utf-8' })